-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (55 loc) · 2.1 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
53
54
55
56
from setuptools import find_packages, setup
setup(
name='django-representatives-votes',
version='0.0.24',
description='Base app for government representative votes',
author='Olivier Le Thanh Duong, Laurent Peuch, Arnaud Fabre, James Pic, Nicolas Joyard',
author_email='[email protected]',
url='http://github.com/political-memory/django-representatives-votes',
packages=find_packages(),
include_package_data=True,
license='GPLv3',
keywords='django government parliament votes',
install_requires=[
'django>1.8,<1.9',
'django-representatives>=0.0.33',
'py-dateutil>=2,<3',
'ijson>=2,<3',
'pytz', # Always use up-to-date TZ data
],
extras_require={
'api': [
'django-filter>=0.13,<0.14',
'djangorestframework>=3.3,<3.4',
],
'testing': [
'codecov>=2,<3',
'flake8>=2,<3',
'mock>=2,<3',
'pep8>=1,<2',
'pytest>=2,<3',
'pytest-django>=2,<3',
'pytest-cov>=2,<3',
'django-responsediff>=0.6,<0.7'
]
},
entry_points={
'console_scripts': [
'parltrack_import_dossiers = representatives_votes.contrib.parltrack.import_dossiers:main',
'parltrack_import_votes = representatives_votes.contrib.parltrack.import_votes:main',
'francedata_import_dossiers = representatives_votes.contrib.francedata.import_dossiers:main',
'francedata_import_scrutins = representatives_votes.contrib.francedata.import_scrutins:main',
'francedata_import_votes = representatives_votes.contrib.francedata.import_votes:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)