mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
updated setup.py
This commit is contained in:
parent
c9de790161
commit
e76458d49e
1 changed files with 11 additions and 3 deletions
14
setup.py
14
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue