updated setup.py

This commit is contained in:
Ales Zoulek 2010-09-17 14:54:30 +02:00
parent c9de790161
commit e76458d49e

View file

@ -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,