-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 879 Bytes
/
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
setup(
name='django-fs-livesettings',
version='1.0.0',
packages=['livesettings'],
include_package_data=True,
install_requires=['django-picklefield'],
author='Yuri Lya',
author_email='yuri.lya@fogstream.ru',
url='https://github.com/fogstream/django-fs-livesettings',
license='The MIT License (MIT)',
description='The Django-related reusable app provides the ability to store settings in a database and configure settings via an admin interface.',
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
python_requires='>=3.6'
)