-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (51 loc) · 1.66 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
import io
import sys
from setuptools import setup, find_packages
from uwsgiconf import VERSION
PATH_BASE = os.path.dirname(__file__)
PYTEST_RUNNER = ['pytest-runner'] if 'test' in sys.argv else []
def get_readme():
# This will return README (including those with Unicode symbols).
with io.open(os.path.join(PATH_BASE, 'README.rst')) as f:
return f.read()
setup(
name='uwsgiconf',
version='.'.join(map(str, VERSION)),
url='https://github.com/idlesign/uwsgiconf',
description='Configure uWSGI from your Python code',
long_description=get_readme(),
license='BSD 3-Clause License',
author='Igor `idle sign` Starikov',
author_email='idlesign@yandex.ru',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[],
setup_requires=[] + PYTEST_RUNNER,
extras_require={
'cli': ['click>=2.0'],
},
entry_points={
'console_scripts': ['uwsgiconf = uwsgiconf.cli:main'],
},
test_suite='tests',
tests_require=[
'pytest',
'pytest-djangoapp',
# pinned to support Python 3.7
'django<4.0.0',
],
classifiers=[
# As in https://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: BSD License'
],
)