forked from ionelmc/python-hunter
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·195 lines (171 loc) · 6.17 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·195 lines (171 loc) · 6.17 KB
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ importabsolute_import
from __future__ importprint_function
importio
importos
importre
importsys
fromdistutils.command.buildimportbuild
fromglobimportglob
fromitertoolsimportchain
fromos.pathimportbasename
fromos.pathimportdirname
fromos.pathimportjoin
fromos.pathimportrelpath
fromos.pathimportsplitext
fromsetuptoolsimportExtension
fromsetuptoolsimportfind_packages
fromsetuptoolsimportsetup
fromsetuptools.command.build_extimportbuild_ext
fromsetuptools.command.developimportdevelop
fromsetuptools.command.easy_installimporteasy_install
fromsetuptools.command.install_libimportinstall_lib
fromsetuptools.distimportDistribution
try:
# Allow installing package without any Cython available. This
# assumes you are going to include the .c files in your sdist.
importCython
exceptImportError:
Cython=None
defread(*names, **kwargs):
withio.open(
join(dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
) asfh:
returnfh.read()
classBuildWithPTH(build):
defrun(self):
super().run()
path=join(dirname(__file__), 'src', 'hunter.pth')
dest=join(self.build_lib, basename(path))
self.copy_file(path, dest)
classEasyInstallWithPTH(easy_install):
defrun(self, *args, **kwargs):
super().run(*args, **kwargs)
path=join(dirname(__file__), 'src', 'hunter.pth')
dest=join(self.install_dir, basename(path))
self.copy_file(path, dest)
classInstallLibWithPTH(install_lib):
defrun(self):
super().run()
path=join(dirname(__file__), 'src', 'hunter.pth')
dest=join(self.install_dir, basename(path))
self.copy_file(path, dest)
self.outputs= [dest]
defget_outputs(self):
returnchain(install_lib.get_outputs(self), self.outputs)
classDevelopWithPTH(develop):
defrun(self):
super().run()
path=join(dirname(__file__), 'src', 'hunter.pth')
dest=join(self.install_dir, basename(path))
self.copy_file(path, dest)
classOptionalBuildExt(build_ext):
"""Allow the building of C extensions to fail."""
defrun(self):
try:
ifos.environ.get('SETUPPY_FORCE_PURE'):
raiseException('C extensions disabled (SETUPPY_FORCE_PURE)!')
super().run()
exceptExceptionase:
self._unavailable(e)
self.extensions= [] # avoid copying missing files (it would fail).
def_unavailable(self, e):
print('*'*80)
print('''WARNING:
An optional code optimization (C extension) could not be compiled.
Optimizations for this package will not be available!
''')
print('CAUSE:')
print('')
print(' '+repr(e))
print('*'*80)
classBinaryDistribution(Distribution):
"""Distribution which almost always forces a binary package with platform name"""
defhas_ext_modules(self):
returnsuper().has_ext_modules() ornotos.environ.get('SETUPPY_ALLOW_PURE')
setup(
name='hunter',
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/hunter/_version.py',
'fallback_version': '3.4.3',
},
license='BSD-2-Clause',
description='Hunter is a flexible code tracing toolkit.',
long_description='%s\n%s'% (
re.compile('^.. start-badges.*^.. end-badges', re.M|re.S).sub('', read('README.rst')),
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))
),
author='Ionel Cristian Mărieș',
author_email='contact@ionelmc.ro',
url='https://github.com/ionelmc/python-hunter',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] forpathinglob('src/*.py')],
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Utilities',
'Topic :: Software Development :: Debuggers',
],
project_urls={
'Documentation': 'https://python-hunter.readthedocs.io/',
'Changelog': 'https://python-hunter.readthedocs.io/en/latest/changelog.html',
'Issue Tracker': 'https://github.com/ionelmc/python-hunter/issues',
},
keywords=[
'trace', 'tracer', 'settrace', 'debugger', 'debugging', 'code', 'source'
],
python_requires='>=3.6',
install_requires=[
],
extras_require={
':platform_system != "Windows"': ['manhole >= 1.5'],
},
setup_requires=[
'setuptools_scm>=3.3.1,!=4.0.0',
'cython',
] ifCythonelse [
'setuptools_scm>=3.3.1,!=4.0.0',
],
entry_points={
'console_scripts': [
'hunter-trace = hunter.remote:main',
]
},
cmdclass={
'build': BuildWithPTH,
'easy_install': EasyInstallWithPTH,
'install_lib': InstallLibWithPTH,
'develop': DevelopWithPTH,
'build_ext': OptionalBuildExt,
},
ext_modules=[] ifhasattr(sys, 'pypy_version_info') else [
Extension(
splitext(relpath(path, 'src').replace(os.sep, '.'))[0],
sources=[path],
extra_compile_args=os.environ.get('SETUPPY_CFLAGS', '').split(),
include_dirs=[dirname(path)]
)
forroot, _, _inos.walk('src')
forpathinglob(join(root, '*.pyx'ifCythonelse'*.c'))
],
distclass=BinaryDistribution,
)