-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
27 lines (26 loc) · 896 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import find_packages, setup
from limesurveyrc2api import __version__
setup(
name="limesurveyrc2api",
version=__version__,
description="LimeSurvey RC2 API Web Services Client",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/lindsay-stevens",
author="Lindsay Stevens",
author_email="[email protected]",
packages=find_packages(exclude=["tests", "tests.*"]),
test_suite="tests",
include_package_data=True,
license="MIT",
install_requires=[
"requests==2.28.2",
],
keywords="limesurvey api webservice client",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
],
)