forked from kunaldeo/django-livesettings3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 1.13 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name='django-livesettings3',
version='1.4.19',
description="Python 3 port of django-livesettings",
long_description="""Python 3 version of django live settings. It provides the ability to configure settings via an admin interface, rather than by editing "settings.py". Documentation avaiable at Github.""",
author='Kunal Deo',
author_email='[email protected]',
url='https://github.com/kunaldeo/django-livesettings3/',
license='New BSD License',
platforms=['any'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django'],
packages=find_packages(),
install_requires=['django>=1.8,<3', 'django-keyedcache3'],
include_package_data=True,
)