diff --git a/setup.py b/setup.py index 0c259e9..5975527 100644 --- a/setup.py +++ b/setup.py @@ -1,24 +1,32 @@ import os from setuptools import setup, find_packages + +f = open(os.path.join(os.path.dirname(__file__), 'README.rst')) +long_description = f.read().strip() +f.close() + setup( name='django-constance', version='0.1', + url="http://bitbucket.org/comoga/django-constance", description='Django live settings stored in redis', + long_description=long_description, author='Comoga Django Team', - author_email='comoga@bitbucket.org', - license='GPL', + author_email='dev@comoga.cz', + license='BSD', keywords='django libraries settings redis'.split(), platforms='any', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', + 'Framework :: Django', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + 'Topic :: Utilities', ], packages=find_packages(exclude=['tests']), include_package_data=True,