-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (35 loc) · 1.4 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
29
30
31
32
33
34
35
36
37
38
39
# read the contents of your README file
from os import path
from setuptools import setup
with open('requirements.txt') as fp:
install_requires = fp.read()
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-setty',
version='3.2.2',
author='Michael England',
author_email='[email protected]',
license='Apache License Version 2.0',
packages=['setty', 'setty.migrations'],
include_package_data=True,
url='https://github.com/mikeengland/django-setty',
description='Django app allowing users to configure settings dynamically in the Admin screen',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
],
keywords='django dynamic live settings setty django-setty admin cache',
install_requires=install_requires,
test_suite='setty.tests',
)