Newer
Older
from setuptools import find_packages, setup
author='Laurent Peuch, Olivier Le Thanh Duong, Yohan Boniface, Arnaud Fabre, James Pic, Nicolas Joyard',
author_email='webmaster@memopol.org',
url='http://github.com/political-memory/django-representatives',
packages=find_packages(),
include_package_data=True,
license='GPLv3',
keywords='django government parliament',
'django-filter>=0.13,<0.14',
'djangorestframework>=3,<4',
],
'testing': [
'codecov>=2,<3',
'flake8>=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_representatives = representatives.contrib.parltrack.import_representatives:main',
'francedata_import_representatives = representatives.contrib.francedata.import_representatives:main',
'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',
]
)