forked from kunaldeo/django-livesettings3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.27 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
26
27
28
from setuptools import setup, find_packages
setup(
name='django-livesettings3',
version='1.6.3',
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='kunaldeo@gmail.com',
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 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django'],
packages=find_packages(),
install_requires=['django>=1.8,<5', 'django-keyedcache3'],
include_package_data=True,
zip_safe=False,
)