-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
99 lines (88 loc) · 2.61 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
#
# Extract the project identity from the README.
#
import io
import setuptools
with io.open('README.rst', encoding='utf-8') as readme:
readme = readme.read()
def get_definition(prefix):
for line in readme.split('\n'):
if line.startswith(prefix):
return line[len(prefix):].strip()
err = 'no line in README.rst with prefix {!r}'.format(prefix)
raise AssertionError(err)
def get_description():
d_start = '|summary|\n'
i_start = readme.index(d_start) + len(d_start)
return readme[i_start:].strip()
name = get_definition('.. |name| replace:: ')
#
# End extraction code.
#
params = dict(
name=name,
use_scm_version=True,
author="Allan Crooks",
author_email="[email protected]",
description=get_definition('.. |summary| replace:: '),
long_description=get_description(),
license='MIT',
url=get_definition('.. _repository: '),
keywords=[],
py_modules=['machinerry'],
include_package_data=True,
namespace_packages=name.split('.')[:-1],
python_requires='>=2.7',
install_requires=[
'CherryPy',
'requests',
'six',
],
extras_require={
'testing': [
'pytest>=3.5',
'pytest-sugar>=0.9.1',
'collective.checkdocs',
'pytest-cov',
'pylint',
],
'docs': [
'sphinx',
'jaraco.packaging>=3.2',
'rst.linker>=1.9',
'allanc-sphinx[yeen]>=0.2',
],
'lint': [
'flake8',
'radon',
'pylint',
],
},
setup_requires=[
'setuptools_scm>=1.15.0',
],
classifiers=[
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: CherryPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
],
entry_points={
},
)
if __name__ == '__main__':
setuptools.setup(**params)