-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
291 lines (239 loc) · 9.34 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#!/usr/bin/env python
# -*- coding: ascii -*-
u"""
:Copyright:
Copyright 2011 - 2024
Andr\xe9 Malo or his licensors, as applicable
:License:
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
===========================================
rJSmin - A Javascript Minifier For Python
===========================================
rJSmin - A Javascript Minifier For Python.
"""
from __future__ import print_function
__author__ = u"Andr\xe9 Malo"
import os as _os
import posixpath as _posixpath
import sys as _sys
# pylint: disable = no-name-in-module, import-error, raise-missing-from
import setuptools as _setuptools
# pylint: disable = invalid-name
def _doc(filename):
""" Read docs file """
# pylint: disable = unspecified-encoding
args = {} if str is bytes else dict(encoding='utf-8')
try:
with open(_os.path.join('docs', filename), **args) as fp:
return fp.read()
except IOError:
return None
package = dict(
name='rjsmin',
top='.',
pathname='.',
desc="Javascript Minifier",
longdesc=_doc('DESCRIPTION'),
author=__author__,
email='nd@perlig.de',
url='http://opensource.perlig.de/rjsmin/',
license="Apache License, Version 2.0",
license_files=["LICENSE"],
packages=False,
py_modules=['rjsmin'],
version_file='rjsmin.py',
install_requires=[],
entry_points={},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
],
)
class BuildFailed(Exception):
""" The build has failed """
from distutils.command import build_ext as _build_ext # pylint: disable = wrong-import-order
from distutils import errors as _errors # pylint: disable = wrong-import-order
class build_ext(_build_ext.build_ext): # pylint: disable = no-init
""" Improved extension building code """
def run(self):
""" Unify exception """
try:
_build_ext.build_ext.run(self)
except _errors.DistutilsPlatformError:
raise BuildFailed()
def build_extension(self, ext):
"""
Build C extension - with extended functionality
The following features are added here:
- The macros ``EXT_PACKAGE`` and ``EXT_MODULE`` will be filled (or
unset) depending on the extensions name, but only if they are not
already defined.
- "." is added to the include directories (for cext.h)
:Parameters:
`ext` : `Extension`
The extension to build
:Return: whatever ``distutils.command.build_ext.build_ext`` returns
:Rtype: any
"""
# handle name macros
macros = dict(ext.define_macros or ())
tup = ext.name.split('.')
if len(tup) == 1:
pkg, mod = None, tup[0]
else:
pkg, mod = '.'.join(tup[:-1]), tup[-1]
if pkg is not None and 'EXT_PACKAGE' not in macros:
ext.define_macros.append(('EXT_PACKAGE', pkg))
if 'EXT_MODULE' not in macros:
ext.define_macros.append(('EXT_MODULE', mod))
if pkg is None:
macros = dict(ext.undef_macros or ())
if 'EXT_PACKAGE' not in macros:
ext.undef_macros.append('EXT_PACKAGE')
try:
return _build_ext.build_ext.build_extension(self, ext)
except (_errors.CCompilerError, _errors.DistutilsExecError,
_errors.DistutilsPlatformError, IOError, ValueError) as e:
raise BuildFailed(str(e))
class Extension(_setuptools.Extension):
""" improved functionality """
def __init__(self, *args, **kwargs):
""" Initialization """
version = kwargs.pop('version')
self.depends = []
if 'depends' in kwargs:
self.depends = kwargs['depends']
_setuptools.Extension.__init__(self, *args, **kwargs)
self.define_macros.append(('EXT_VERSION', version))
# add include path
included = '.'
if included not in self.include_dirs:
self.include_dirs.append(included)
# add cext.h to the dependencies
cext_h = _posixpath.normpath(_posixpath.join(included, 'cext.h'))
for item in self.depends:
if _posixpath.normpath(item) == cext_h:
break
else:
self.depends.append(cext_h)
EXTENSIONS = lambda v: [Extension('_rjsmin', ["rjsmin.c"], version=v)]
def do_setup(cext):
""" Main """
# pylint: disable = too-many-branches
# pylint: disable = unspecified-encoding
args = {} if str is bytes else dict(encoding='utf-8')
version_file = '%s/%s' % (package['pathname'],
package.get('version_file', '__init__.py'))
with open(version_file, **args) as fp:
for line in fp: # pylint: disable = redefined-outer-name
if line.startswith('__version__'):
version = line.split('=', 1)[1].strip()
if version.startswith(("'", '"')):
version = version[1:-1].strip()
break
else:
raise RuntimeError("Version not found")
kwargs = {}
if not cext or 'java' in _sys.platform.lower():
extensions = []
else:
extensions = EXTENSIONS(version)
if extensions:
if 'build_ext' in globals():
kwargs.setdefault('cmdclass', {})['build_ext'] = build_ext
kwargs['ext_modules'] = extensions
cflags = None
if _os.environ.get('CFLAGS') is None:
from distutils import ccompiler as _ccompiler
compiler = _ccompiler.get_default_compiler()
try:
with open("debug.%s.cflags" % compiler) as fp:
cflags = ' '.join([
line for line in (line.strip() for line in fp)
if line and not line.startswith('#')
]).split() or None
except IOError:
pass
if cflags:
gcov = 'coverage' in ' '.join(cflags)
for ext in extensions:
# pylint: disable = attribute-defined-outside-init
ext.extra_compile_args = \
getattr(ext, 'extra_compile_args', []) + cflags
if gcov:
ext.libraries.append('gcov')
if package.get('packages', True):
kwargs['packages'] = [package['top']] + [
'%s.%s' % (package['top'], item)
for item in
_setuptools.find_packages(package['pathname'])
]
if package.get('py_modules'):
kwargs['py_modules'] = package['py_modules']
if package.get("license_files"):
kwargs["license_files"] = package["license_files"]
if package.get("license"):
kwargs["license"] = package["license"]
if package.get("classifiers"):
kwargs["classifiers"] = package["classifiers"]
if package.get("entry_points"):
kwargs["entry_points"] = package["entry_points"]
_setuptools.setup(
name=package['name'],
author=package['author'],
author_email=package['email'],
description=package['desc'],
long_description=package['longdesc'],
url=package['url'],
install_requires=package['install_requires'],
version=version,
zip_safe=False,
**kwargs
)
def setup():
""" Run setup """
try:
do_setup(True)
except BuildFailed:
env = 'SETUP_CEXT_REQUIRED'
if _os.environ.get(env, '') not in ('', '0'):
raise
print("C extension build failed - building python only version now. "
"Set '%s' environment variable to '1' to make it fail."
% (env,), file=_sys.stderr)
do_setup(False)
if __name__ == '__main__':
setup()