forked from cherrypy/cherrypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
195 lines (171 loc) · 6.06 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import sys
import re
from distutils.command.install import INSTALL_SCHEMES
from distutils.command.build_py import build_py
from setuptools.command.test import test as TestCommand
import setuptools
class cherrypy_build_py(build_py):
"""Custom version of build_py that excludes Python-specific modules"""
def build_module(self, module, module_file, package):
python3 = sys.version_info >= (3,)
if python3:
exclude_pattern = re.compile('ssl_pyopenssl|'
'_cpcompat_subprocess')
else:
exclude_pattern = re.compile('xxx')
if exclude_pattern.match(module):
return # skip it
return build_py.build_module(self, module, module_file, package)
class Tox(TestCommand):
"""
Command for running tox on `python setup.py test` invocation
Shamelessly stolen from http://stackoverflow.com/a/11547391/595220
"""
user_options = [('tox-args=', 'a', 'Arguments to pass to tox')]
def initialize_options(self):
TestCommand.initialize_options(self)
self.tox_args = None
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import tox
import shlex
args = self.tox_args
if args:
args = shlex.split(self.tox_args)
errno = tox.cmdline(args=args)
sys.exit(errno)
###############################################################################
# arguments for the setup command
###############################################################################
name = "CherryPy"
version = "7.1.0"
desc = "Object-Oriented HTTP framework"
long_desc = "CherryPy is a pythonic, object-oriented HTTP framework"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Operating System :: OS Independent",
"Framework :: CherryPy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"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",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
author = "CherryPy Team"
author_email = "team@cherrypy.org"
url = "http://www.cherrypy.org"
cp_license = "BSD"
packages = [
"cherrypy", "cherrypy.lib",
"cherrypy.tutorial", "cherrypy.test",
"cherrypy.process",
"cherrypy.scaffold",
"cherrypy.wsgiserver",
]
data_files = [
('cherrypy', [
'cherrypy/cherryd',
'cherrypy/favicon.ico',
'cherrypy/LICENSE.txt',
]),
('cherrypy/process', []),
('cherrypy/scaffold', [
'cherrypy/scaffold/example.conf',
'cherrypy/scaffold/site.conf',
]),
('cherrypy/scaffold/static', [
'cherrypy/scaffold/static/made_with_cherrypy_small.png',
]),
('cherrypy/test', [
'cherrypy/test/style.css',
'cherrypy/test/test.pem',
]),
('cherrypy/test/static', [
'cherrypy/test/static/index.html',
'cherrypy/test/static/dirback.jpg',
]),
('cherrypy/tutorial', [
'cherrypy/tutorial/tutorial.conf',
'cherrypy/tutorial/README.txt',
'cherrypy/tutorial/pdf_file.pdf',
'cherrypy/tutorial/custom_error.html',
]),
]
scripts = ["cherrypy/cherryd"]
install_requires = [
'six',
]
tests_require = [
'tox',
]
cmd_class = {
'build_py': cherrypy_build_py,
'test': Tox, # Enables `python setup.py test` invocation run tox tests
}
if sys.version_info >= (3, 0):
required_python_version = '3.1'
else:
required_python_version = '2.6'
###############################################################################
# end arguments for setup
###############################################################################
# wininst may install data_files in Python/x.y instead of the cherrypy package.
# Django's solution is at http://code.djangoproject.com/changeset/8313
# See also
# http://mail.python.org/pipermail/distutils-sig/2004-August/004134.html
if 'bdist_wininst' in sys.argv or '--format=wininst' in sys.argv:
data_files = [(r'\PURELIB\%s' % path, files) for path, files in data_files]
setup_params = dict(
name=name,
version=version,
description=desc,
long_description=long_desc,
classifiers=classifiers,
author=author,
author_email=author_email,
url=url,
license=cp_license,
packages=packages,
data_files=data_files,
scripts=scripts,
cmdclass=cmd_class,
install_requires=install_requires,
# Enables `python setup.py test` invocation install test dependencies first
tests_require=tests_require,
)
def main():
if sys.version < required_python_version:
s = "I'm sorry, but %s %s requires Python %s or later."
print(s % (name, version, required_python_version))
sys.exit(1)
# set default location for "data_files" to
# platform specific "site-packages" location
for scheme in list(INSTALL_SCHEMES.values()):
scheme['data'] = scheme['purelib']
setuptools.setup(**setup_params)
if __name__ == "__main__":
main()