mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-17 06:50:23 +00:00
26 lines
811 B
Python
26 lines
811 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='django-constance',
|
|
version='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(exclude=['tests']),
|
|
include_package_data=True,
|
|
test_suite='tests.runtests.runtests',
|
|
)
|
|
|