forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·286 lines (240 loc) · 9.29 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
#!/usr/bin/env python
import sys
if sys.version_info < (3, 5):
print('Python >= 3.5 is required to build')
sys.exit(1)
# Import setuptools before distutils because setuptools monkey patches
# distutils.
import setuptools
import atexit
import distutils.command.build
import os
import platform
import subprocess
import tempfile
import time
import setuptools.command.build_ext
import setuptools.command.develop
import setuptools.command.install
import setuptools.command.sdist
import setuptools.command.test
package_name = 'neuroglancer'
root_dir = os.path.dirname(__file__)
python_dir = os.path.join(root_dir, 'python')
src_dir = os.path.join(python_dir, 'ext', 'src')
openmesh_dir = os.path.join(python_dir, 'ext', 'third_party', 'openmesh', 'OpenMesh', 'src')
with open(os.path.join(python_dir, 'README.md'), mode='r', encoding='utf-8') as f:
long_description = f.read()
def _maybe_bundle_client(cmd):
"""Build the client bundle if it does not already exist.
If it has already been built but is stale, the user is responsible for
rebuilding it.
"""
bundle_client_cmd = cmd.distribution.get_command_obj('bundle_client')
if bundle_client_cmd.skip_rebuild is None:
bundle_client_cmd.skip_rebuild = True
cmd.run_command('bundle_client')
def _setup_temp_egg_info(cmd):
"""Use a temporary directory for the `neuroglancer.egg-info` directory.
When building an sdist (source distribution) or installing, locate the
`neuroglancer.egg-info` directory inside a temporary directory so that it
doesn't litter the source directory and doesn't pick up a stale SOURCES.txt
from a previous build.
"""
egg_info_cmd = cmd.distribution.get_command_obj('egg_info')
if egg_info_cmd.egg_base is None:
tempdir = tempfile.TemporaryDirectory(dir=os.curdir)
egg_info_cmd.egg_base = tempdir.name
atexit.register(tempdir.cleanup)
class SdistCommand(setuptools.command.sdist.sdist):
def run(self):
# Build the client bundle if it does not already exist. If it has
# already been built but is stale, the user is responsible for
# rebuilding it.
_maybe_bundle_client(self)
_setup_temp_egg_info(self)
super().run()
def make_release_tree(self, base_dir, files):
# Exclude .egg-info from source distribution. These aren't actually
# needed, and due to the use of the temporary directory in `run`, the
# path isn't correct if it gets included.
files = [x for x in files if '.egg-info' not in x]
super().make_release_tree(base_dir, files)
class BuildCommand(distutils.command.build.build):
def finalize_options(self):
if self.build_base == 'build':
# Use temporary directory instead, to avoid littering the source directory
# with a `build` sub-directory.
tempdir = tempfile.TemporaryDirectory()
self.build_base = tempdir.name
atexit.register(tempdir.cleanup)
super().finalize_options()
def run(self):
_maybe_bundle_client(self)
super().run()
class BuildExtCommand(setuptools.command.build_ext.build_ext):
def finalize_options(self):
super().finalize_options()
# Prevent numpy from thinking it is still in its setup process
if isinstance(__builtins__, dict):
__builtins__['__NUMPY_SETUP__'] = False
else:
setattr(__builtins__, '__NUMPY_SETUP__', False)
import numpy
self.include_dirs.append(numpy.get_include())
class InstallCommand(setuptools.command.install.install):
def run(self):
_setup_temp_egg_info(self)
super().run()
class DevelopCommand(setuptools.command.develop.develop):
def run(self):
_maybe_bundle_client(self)
super().run()
class BundleClientCommand(distutils.command.build.build):
user_options = [
('client-bundle-type=', None,
'The nodejs bundle type. "min" (default) creates condensed static files for production, "dev" creates human-readable files.'
),
('skip-npm-reinstall', None,
'Skip running `npm install` if the `node_modules` directory already exists.'),
('skip-rebuild', None,
'Skip rebuilding if the `python/neuroglancer/static/index.html` file already exists.'),
]
def initialize_options(self):
self.client_bundle_type = 'min'
self.skip_npm_reinstall = None
self.skip_rebuild = None
def finalize_options(self):
if self.client_bundle_type not in ['min', 'dev']:
raise RuntimeError('client-bundle-type has to be one of "min" or "dev"')
if self.skip_npm_reinstall is None:
self.skip_npm_reinstall = False
if self.skip_rebuild is None:
self.skip_rebuild = False
def run(self):
if self.skip_rebuild:
html_path = os.path.join(python_dir, 'neuroglancer', 'static', 'index.html')
if os.path.exists(html_path):
print('Skipping rebuild of client bundle since %s already exists' % (html_path, ))
return
target = {"min": "build-python-min", "dev": "build-python-dev"}
try:
t = target[self.client_bundle_type]
node_modules_path = os.path.join(root_dir, 'node_modules')
if (self.skip_npm_reinstall and os.path.exists(node_modules_path)):
print('Skipping `npm install` since %s already exists' % (node_modules_path, ))
else:
subprocess.call('npm i', shell=True, cwd=root_dir)
res = subprocess.call('npm run %s' % t, shell=True, cwd=root_dir)
except:
raise RuntimeError(
'Could not run \'npm run %s\'. Make sure node.js >= v12 is installed and in your path.'
% t)
if res != 0:
raise RuntimeError('failed to bundle neuroglancer node.js project')
local_sources = [
'_neuroglancer.cc',
'openmesh_dependencies.cc',
'on_demand_object_mesh_generator.cc',
'voxel_mesh_generator.cc',
'mesh_objects.cc',
]
USE_OMP = False
if USE_OMP:
openmp_flags = ['-fopenmp']
else:
openmp_flags = []
extra_compile_args = ['-std=c++11', '-fvisibility=hidden', '-O3'] + openmp_flags
if platform.system() == 'Darwin':
extra_compile_args.insert(0, '-stdlib=libc++')
# Disable newer exception handling from Visual Studio 2019, since it requires a
# newer C++ runtime than shipped with Python. The C++ extension doesn't use
# exceptions anyway.
#
# https://cibuildwheel.readthedocs.io/en/stable/faq/#importerror-dll-load-failed-the-specific-module-could-not-be-found-error-on-windows
if platform.system() == 'Windows':
extra_compile_args.append('/d2FH4-')
# Copied from setuptools_scm, can be removed once a released version of
# setuptools_scm supports `version_scheme=no-guess-dev`.
#
# Note: It would be nice to include the commit hash in the version, but that
# can't be done in a PEP 440-compatible way.
def _no_guess_dev_version(version):
if version.exact:
return version.format_with("{tag}")
else:
return version.format_with("{tag}.post1.dev{distance}")
setuptools.setup(
name=package_name,
# Use setuptools_scm to determine version from git tags
use_scm_version={
"relative_to": __file__,
"version_scheme": _no_guess_dev_version,
"local_scheme": "no-local-version",
"parentdir_prefix_version": package_name + "-",
},
description='Python data backend for neuroglancer, a WebGL-based viewer for volumetric data',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jeremy Maitin-Shepard',
author_email='[email protected]',
url='https://github.com/google/neuroglancer',
license='Apache License 2.0',
packages=setuptools.find_packages('python'),
package_dir={
'': 'python',
},
package_data={
'neuroglancer.static': ['*.html', '*.css', '*.js', '*.js.map'],
},
setup_requires=[
"setuptools_scm>=4.1.2",
"numpy>=1.11.0",
],
install_requires=[
"Pillow>=3.2.0",
"numpy>=1.11.0",
'requests',
'tornado',
'sockjs-tornado',
'six',
'google-apitools',
'google-auth',
],
extras_require={
'test': [
'pytest>=6.1.2',
'pytest-rerunfailures>=9.1.1',
'pytest-timeout>=1.4.2',
],
'test-browser': [
'selenium>=3.141.0',
],
'test-firefox': [
"geckodriver_autoinstaller>=0.1.0 ; python_version>='3.6'",
],
'test-chrome': [
'chromedriver-binary',
],
},
ext_modules=[
setuptools.Extension(
'neuroglancer._neuroglancer',
sources=[os.path.join(src_dir, name) for name in local_sources],
language='c++',
include_dirs=[openmesh_dir],
define_macros=[
('_USE_MATH_DEFINES', None), # Needed by OpenMesh when used with MSVC
],
extra_compile_args=extra_compile_args,
extra_link_args=openmp_flags),
],
cmdclass={
'sdist': SdistCommand,
'build': BuildCommand,
'bundle_client': BundleClientCommand,
'build_ext': BuildExtCommand,
'install': InstallCommand,
'develop': DevelopCommand,
},
)