diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..1909f8954d8741fd94c69c44ec990ee2249b0c7a --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + + +setup( + name='django-representatives-votes', + version='0.0.1', + description='Base app for government representative votes', + author='Olivier Le Thanh Duong', + author_email='olivier@lethanh.be', + url='http://github.com/political-memory/django-representatives-votes', + packages=find_packages(), + include_package_data=True, + license='GPLv3', + keywords='django government parliament votes', + classifiers=[ + 'Development Status :: 1 - Alpha/Planning', + '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', + ] +)