mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
added setup.py
This commit is contained in:
parent
58089aa123
commit
671263aeb0
1 changed files with 25 additions and 0 deletions
25
setup.py
25
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,
|
||||
)
|
||||
|
||||
Loading…
Reference in a new issue