django-constance/setup.py

39 lines
1.1 KiB
Python
Raw Normal View History

2010-08-23 11:21:01 +00:00
import os
from setuptools import setup, find_packages
2010-09-17 12:54:30 +00:00
2010-09-21 08:15:52 +00:00
try:
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
2010-09-21 08:17:41 +00:00
except IOError:
2010-09-21 08:15:52 +00:00
long_description = None
2010-09-17 12:54:30 +00:00
2010-08-23 11:21:01 +00:00
setup(
name='django-constance',
2010-08-24 09:49:21 +00:00
version='0.1',
2010-09-17 12:54:30 +00:00
url="http://bitbucket.org/comoga/django-constance",
2010-08-23 11:21:01 +00:00
description='Django live settings stored in redis',
2010-09-17 12:54:30 +00:00
long_description=long_description,
2010-08-23 11:21:01 +00:00
author='Comoga Django Team',
2010-09-17 12:54:30 +00:00
author_email='dev@comoga.cz',
license='BSD',
2010-08-23 11:21:01 +00:00
keywords='django libraries settings redis'.split(),
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
2010-09-17 12:54:30 +00:00
'Framework :: Django',
2010-08-23 11:21:01 +00:00
'Intended Audience :: Developers',
'Natural Language :: English',
2010-09-03 14:54:11 +00:00
'License :: OSI Approved :: BSD License',
2010-08-23 11:21:01 +00:00
'Operating System :: OS Independent',
'Programming Language :: Python',
2010-09-17 12:54:30 +00:00
'Topic :: Utilities',
2010-08-23 11:21:01 +00:00
],
2010-08-25 13:55:09 +00:00
packages=find_packages(exclude=['tests']),
2010-08-23 11:21:01 +00:00
include_package_data=True,
2010-08-25 12:58:09 +00:00
test_suite='tests.runtests.runtests',
2010-08-23 11:21:01 +00:00
)