forked from Pierre-Sassoulas/django-survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.71 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import sys
from setuptools import find_packages, setup
if sys.version_info < (2, 6):
sys.exit('Sorry, Python < 2.6 is not supported')
def add_package(package_list, package):
package = package.replace("\n", "").split("#")[0]
if package:
package_list.append(package)
setup(
name="django-survey-and-report",
version="1.0.5",
description="A django survey app, based on and compatible with "
"'django-survey'",
long_description="A django survey app, based on and compatible with "
"'django-survey' (ie: you can migrate your old django-survey app and its "
"data), but ported to python 3 and allowing export and report as CSV or "
"PDF.",
author="Pierre SASSOULAS",
author_email="[email protected]",
license="AGPL",
url="https://github.com/Pierre-Sassoulas/django-survey",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Natural Language :: French",
"Topic :: Utilities",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
'Programming Language :: Python :: 3',
"Framework :: Django",
],
install_requires=[
"Django", "django-bootstrap-form", "django-tastypie",
"django-registration", "pytz", "future", "ordereddict", "PyYAML",
"matplotlib", "seaborn", "numpy"
],
extras_require={
'dev': ["django-rosetta", "pylint", "coverage", "mock"],
},
)