diff --git a/setup.py b/setup.py index e69de29..f44c7c7 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,25 @@ +import os +from setuptools import setup, find_packages + +setup( + name='django-constance', + version=os.environ.get('VERSION', '0.0.1'), + description='Django live settings stored in redis', + author='Comoga Django Team', + author_email='comoga@bitbucket.org', + license='GPL', + keywords='django libraries settings redis'.split(), + platforms='any', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + ], + packages=find_packages(), + include_package_data=True, +) +