forked from airspeed-velocity/asv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·235 lines (190 loc) · 6.71 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
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, Extension, Command
from setuptools.command.test import test as TestCommand
from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError, DistutilsExecError, DistutilsPlatformError
import os
import re
import subprocess
import sys
# A py.test test command
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test"),
('coverage', 'c', "Generate coverage report")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ''
self.coverage = False
def finalize_options(self):
TestCommand.finalize_options(self)
# The following is required for setuptools<18.4
try:
self.test_args = []
except AttributeError:
# fails on setuptools>=18.4
pass
self.test_suite = 'unused'
def run_tests(self):
import pytest
test_args = ['test']
if self.pytest_args:
test_args += self.pytest_args.split()
if self.coverage:
test_args += ['--cov', os.path.abspath('asv')]
errno = pytest.main(test_args)
sys.exit(errno)
basedir = os.path.abspath(os.path.dirname(__file__))
def get_git_hash():
"""
Get version from asv/__init__.py and generate asv/_version.py
"""
# Obtain git revision
githash = ""
if os.path.isdir(os.path.join(basedir, '.git')):
try:
proc = subprocess.Popen(
['git', '-C', basedir, 'rev-parse', 'HEAD'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
rev, err = proc.communicate()
if proc.returncode == 0:
githash = rev.strip().decode('ascii')
except OSError:
pass
return githash
def get_git_revision():
"""
Get the number of revisions since the last tag.
"""
revision = "0"
if os.path.isdir(os.path.join(basedir, '.git')):
try:
proc = subprocess.Popen(
['git', '-C', basedir, 'rev-list', '--count', 'HEAD'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
rev, err = proc.communicate()
if proc.returncode == 0:
revision = rev.strip().decode('ascii')
except OSError:
pass
return revision
def write_version_file(filename, version, revision):
# Write revision file (only if it needs to be changed)
content = '''
__version__ = "{0}"
__githash__ = "{1}"
__release__ = {2}
'''.format(version, revision, 'dev' not in version)
old_content = None
if os.path.isfile(filename):
with open(filename, 'r') as f:
old_content = f.read()
if 'dev' in version and not revision.strip():
# Dev version and Git revision not available. Probably
# running from an sdist, so assume the version file is up
# to date.
m = re.search(r'__version__ = "([0-9a-z+.-]*)"', old_content)
if m:
old_version = m.group(1)
prefix = version[:version.find('dev')]
if old_version.startswith(prefix):
version = old_version
content = old_content
if content != old_content:
with open(filename, 'w') as f:
f.write(content)
return version
class BuildFailed(Exception):
pass
class optional_build_ext(build_ext):
def run(self):
try:
build_ext.run(self)
except DistutilsPlatformError:
raise BuildFailed()
def build_extension(self, ext):
try:
build_ext.build_extension(self, ext)
except (CCompilerError, DistutilsExecError, DistutilsPlatformError,
IOError, ValueError):
raise BuildFailed()
def run_setup(build_binary=False):
version = '0.3.dev'
git_hash = get_git_hash()
# Indicates if this version is a release version
release = 'dev' not in version
if not release:
version = '{0}{1}+{2}'.format(
version, get_git_revision(), git_hash[:8])
version = write_version_file(
os.path.join(basedir, 'asv', '_version.py'), version, git_hash)
# Install entry points for making releases with zest.releaser
entry_points = {}
for hook in [('releaser', 'middle'), ('postreleaser', 'before')]:
hook_ep = 'zest.releaser.' + '.'.join(hook)
hook_name = 'asv.release.' + '.'.join(hook)
hook_func = 'asv._release:' + '_'.join(hook)
entry_points[hook_ep] = ['%s = %s' % (hook_name, hook_func)]
entry_points['console_scripts'] = ['asv = asv.main:main']
if build_binary:
ext_modules = [Extension("asv._rangemedian", ["asv/_rangemedian.cpp"])]
else:
ext_modules = []
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name="asv",
version=version,
packages=['asv',
'asv.commands',
'asv.plugins',
'asv.extern',
'asv._release'],
entry_points=entry_points,
ext_modules = ext_modules,
install_requires=[
str('six>=1.4')
],
extras_require={
str('hg'): ["python-hglib>=1.5"]
},
package_data={
str('asv'): [
'www/*.html',
'www/*.js',
'www/*.css',
'www/*.png',
'www/*.ico',
'www/flot/*.js',
'template/__init__.py',
'template/asv.conf.json',
'template/benchmarks/*.py'
]
},
zip_safe=False,
# py.test testing
tests_require=['pytest'],
cmdclass={'test': PyTest, 'build_ext': optional_build_ext},
author="Michael Droettboom",
author_email="mdroe@stsci.edu",
description="Airspeed Velocity: A simple Python history benchmarking tool",
license="BSD",
url="http://github.com/spacetelescope/asv",
long_description=long_description,
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
]
)
if __name__ == "__main__":
try:
run_setup(build_binary=True)
except BuildFailed:
print("Compiling asv._rangemedian failed -- continuing without it")
run_setup(build_binary=False)