forked from lindsay-stevens/limesurveyrc2api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 758 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
from setuptools import setup
from limesurveyrc2api import __version__
setup(
name="limesurveyrc2api",
version=__version__,
description="LimeSurvey RC2 API Web Services Client",
url="https://github.com/lindsay-stevens",
author="Lindsay Stevens",
author_email="[email protected]",
packages=["limesurveyrc2api"],
test_suite="tests",
include_package_data=True,
license="MIT",
install_requires=[
# see requirements.txt
],
keywords="limesurvey api webservice client",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
],
)