forked from neuronsimulator/nrn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
598 lines (525 loc) · 21.3 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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
import os
import shutil
import subprocess
import sys
from collections import defaultdict
import logging
logging.basicConfig(level=logging.INFO)
from shutil import copytree, which
from setuptools import Command, Extension
from setuptools import setup
logging.info("setup.py called with:" + " ".join(sys.argv))
class Components:
RX3D = True
IV = True
MPI = True
MUSIC = False # still early support
CORENRN = False # still early support
# Check if we've got --cmake-build-dir path that will be used to build extensions only
# and not to build NEURON wheels.
just_extensions = False
cmake_build_dir = "build/cmake_install" # default for wheels
if "--cmake-build-dir" in sys.argv:
cmake_build_dir = sys.argv[sys.argv.index("--cmake-build-dir") + 1]
sys.argv.remove("--cmake-build-dir")
sys.argv.remove(cmake_build_dir)
# Check that the CMake build directory is valid
if not os.path.exists(cmake_build_dir):
raise RuntimeError(
"CMake build directory does not exist: {}".format(cmake_build_dir)
)
# Check that the CMake build directory has been configured and built
if not os.path.exists(os.path.join(cmake_build_dir, "CMakeCache.txt")):
raise RuntimeError(
"CMake build directory does not contain CMakeCache.txt: {}".format(
cmake_build_dir
)
)
# check for libnrniv.{so,dylib, dll.a} depending on platform
check_suffix = "so" if sys.platform != "darwin" else "dylib"
if sys.platform == "win32":
check_suffix = "dll.a"
if not os.path.exists(
os.path.join(
cmake_build_dir,
"lib",
"libnrniv.{}".format(check_suffix),
)
):
raise RuntimeError(
"CMake build directory does not contain libnrniv: {}".format(
cmake_build_dir
)
)
just_extensions = True
# Check for RX3D Optimization Level
rx3d_opt_level = "-O0"
if "--rx3d-opt-level" in sys.argv:
rx3d_opt_level_arg = sys.argv[sys.argv.index("--rx3d-opt-level") + 1]
rx3d_opt_level = "-O{}".format(int(rx3d_opt_level_arg))
sys.argv.remove("--rx3d-opt-level")
sys.argv.remove(rx3d_opt_level_arg)
# If NRN_ENABLE_PYTHON_DYNAMIC is ON, we will build the wheel without the nrnpython library
without_nrnpython = False
if "--without-nrnpython" in sys.argv:
without_nrnpython = True
sys.argv.remove("--without-nrnpython")
# setup options must be checked for very early as it impacts imports
if "--disable-rx3d" in sys.argv:
Components.RX3D = False
sys.argv.remove("--disable-rx3d")
if "--disable-iv" in sys.argv:
Components.IV = False
sys.argv.remove("--disable-iv")
if "--disable-mpi" in sys.argv:
Components.MPI = False
Components.MUSIC = False
sys.argv.remove("--disable-mpi")
if "--enable-coreneuron" in sys.argv:
Components.CORENRN = True
sys.argv.remove("--enable-coreneuron")
if "--enable-music" in sys.argv:
Components.MUSIC = True
sys.argv.remove("--enable-music")
if Components.RX3D:
try:
from Cython.Distutils import Extension as CyExtension
from Cython.Distutils import build_ext
import numpy
except ImportError:
logging.error(
"ERROR: RX3D wheel requires Cython and numpy. Please install beforehand"
)
sys.exit(1)
else:
from setuptools.command.build_ext import build_ext
class CMakeAugmentedExtension(Extension):
"""
Definition of an extension that depends on a project to be built using CMake
Notice by default the cmake project is installed to build/cmake_install
"""
def __init__(
self,
name,
sources,
cmake_proj_dir="",
cmake_flags=None,
cmake_collect_dirs=None,
cmake_install_python_files="lib/python",
**kw,
):
"""Creates a CMakeAugmentedExtension.
Args:
name: the full name of the extension module (e.g. neuron.hoc)
sources: The cpp sources of the extension
cmake_proj_dir: The location of the cmake project
cmake_flags: A list of options to be passed to cmake
cmake_collect_dirs: Upon cmake success, these dirs are copied
as package data in a dir '.data'
cmake_install_python_files: Path to be scanned for python
modules to be added directly to the python package tree
"""
Extension.__init__(self, name, sources, **kw)
self.sourcedir = os.path.abspath(cmake_proj_dir)
self.cmake_flags = cmake_flags or []
self.cmake_install_prefix = os.path.abspath(cmake_build_dir)
self.cmake_collect_dirs = cmake_collect_dirs or []
self.cmake_install_python_files = cmake_install_python_files
self.cmake_done = False
class CMakeAugmentedBuilder(build_ext):
"""Builder which understands CMakeAugmentedExtension"""
user_options = build_ext.user_options + [
("cmake-prefix=", None, "value for CMAKE_PREFIX_PATH"),
("cmake-defs=", None, "Additional CMake definitions, comma split"),
]
boolean_options = build_ext.boolean_options + ["docs"]
def initialize_options(self):
build_ext.initialize_options(self)
self.cmake_prefix = None
self.cmake_defs = None
self.docs = False
def run(self, *args, **kw):
"""Execute the extension builder.
In case the given extension is a CMakeAugmentedExtension launches
the CMake building, sets the extension build environment and collects files.
"""
for ext in self.extensions:
if isinstance(ext, CMakeAugmentedExtension):
if ext.cmake_done:
continue
if just_extensions:
self.build_temp = cmake_build_dir
self.build_base = cmake_build_dir
# Make the temp include paths in the building the extension
ext.include_dirs += [
os.path.join(self.build_temp, inc_dir)
for inc_dir in ext.include_dirs
if not os.path.isabs(inc_dir)
]
continue
else:
self._run_cmake(ext) # Build cmake project
if self.docs:
return
# Collect project files to be installed
# These go directly into final package, regardless of setuptools filters
logging.info("\n==> Collecting CMAKE files")
rel_package = ext.name.split(".")[:-1]
package_data_d = os.path.join(
self.build_lib, *(rel_package + [".data"])
)
# Python files created/configured by CMake
src_py_dir = os.path.join(
ext.cmake_install_prefix, ext.cmake_install_python_files
)
if os.path.isdir(src_py_dir):
copytree(src_py_dir, self.build_lib, dirs_exist_ok=True)
shutil.rmtree(src_py_dir) # avoid being collected to data dir
for d in ext.cmake_collect_dirs:
logging.info(" - Collecting %s (and everything under it)", d)
src_dir = os.path.join(ext.cmake_install_prefix, d)
dst_dir = os.path.join(package_data_d, d)
if not os.path.isdir(dst_dir):
shutil.copytree(src_dir, dst_dir)
logging.info("==> Done building CMake project\n.")
# Make the temp include paths in the building the extension
ext.include_dirs += [
os.path.join(self.build_temp, inc_dir)
for inc_dir in ext.include_dirs
if not os.path.isabs(inc_dir)
]
ext.cmake_done = True
# Now build the extensions normally
logging.info("==> Building Python extensions")
build_ext.run(self, *args, **kw)
def _run_cmake(self, ext):
cmake = self._find_cmake()
cfg = "Debug" if self.debug else "Release"
self.outdir = os.path.abspath(ext.cmake_install_prefix)
logging.info("Building lib to: %s", self.outdir)
cmake_args = [
# Generic options only. project options shall be passed as ext param
"-DCMAKE_INSTALL_PREFIX=" + self.outdir,
"-DPYTHON_EXECUTABLE=" + sys.executable,
"-DCMAKE_BUILD_TYPE=" + cfg,
] + ext.cmake_flags
# RTD needs quick config
if self.docs and os.environ.get("READTHEDOCS"):
cmake_args = ["-DNRN_ENABLE_MPI=OFF", "-DNRN_ENABLE_INTERVIEWS=OFF"]
if self.docs:
cmake_args.append("-DNRN_ENABLE_DOCS=ON")
cmake_args.append("-DNRN_ENABLE_DOCS_WITH_EXTERNAL_INSTALLATION=ON")
if self.cmake_prefix:
cmake_args.append("-DCMAKE_PREFIX_PATH=" + self.cmake_prefix)
if self.cmake_defs:
cmake_args += ["-D" + opt for opt in self.cmake_defs.split(",")]
build_args = ["--config", cfg, "--", "-j4"] # , 'VERBOSE=1']
env = os.environ.copy()
env["CXXFLAGS"] = "{} -DVERSION_INFO='{}'".format(
env.get("CXXFLAGS", ""), self.distribution.get_version()
)
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
try:
# Configure project
subprocess.Popen("echo $CXX", shell=True, stdout=subprocess.PIPE)
logging.info(
"[CMAKE] cmd: %s", " ".join([cmake, ext.sourcedir] + cmake_args)
)
subprocess.check_call(
[cmake, ext.sourcedir] + cmake_args, cwd=self.build_temp, env=env
)
if self.docs:
# RTD will call sphinx for us. We just need notebooks and doxygen
if os.environ.get("READTHEDOCS"):
subprocess.check_call(
[cmake, "--build", ".", "--target", "notebooks"],
cwd=self.build_temp,
env=env,
)
subprocess.check_call(
[cmake, "--build", ".", "--target", "doxygen"],
cwd=self.build_temp,
env=env,
)
else:
subprocess.check_call(
[cmake, "--build", ".", "--target", "docs"],
cwd=self.build_temp,
env=env,
)
else:
subprocess.check_call(
[cmake, "--build", ".", "--target", "install"] + build_args,
cwd=self.build_temp,
env=env,
)
subprocess.check_call(
[
ext.cmake_install_prefix + "/bin/neurondemo",
"-nopython",
"-nogui",
"-c",
"quit()",
],
cwd=self.build_temp,
env=env,
)
# mac: libnrnmech of neurondemo need to point to relative libnrniv
REL_RPATH = (
"@loader_path" if sys.platform[:6] == "darwin" else "$ORIGIN"
)
subprocess.check_call(
[
ext.sourcedir + "/packaging/python/fix_demo_libnrnmech.sh",
ext.cmake_install_prefix,
REL_RPATH,
],
cwd=self.build_temp,
env=env,
)
except subprocess.CalledProcessError as exc:
logging.error("Status : FAIL. Logging.\n%s", exc.output)
raise
@staticmethod
def _find_cmake():
cmake_cmd = which("cmake") or which("cmake3")
if not cmake_cmd:
raise RuntimeError("Project requires CMake")
return cmake_cmd
class Docs(Command):
description = "Generate & optionally upload documentation to docs server"
user_options = [("upload", None, "Upload to docs server")]
finalize_options = lambda self: None
def initialize_options(self):
self.upload = False
def run(self):
# The extensions must be created inplace to inspect docs
self.reinitialize_command("build_ext", inplace=1, docs=True)
self.run_command("build_ext")
if self.upload:
self._upload()
def _upload(self):
pass
def setup_package():
NRN_PY_ROOT = "share/lib/python"
NRN_PY_SCRIPTS = os.path.join(NRN_PY_ROOT, "scripts")
NRN_COLLECT_DIRS = ["bin", "lib", "include", "share"]
docs_require = [] # sphinx, themes, etc
maybe_rxd_reqs = ["numpy", "Cython"] if Components.RX3D else []
maybe_docs = docs_require if "docs" in sys.argv else []
maybe_test_runner = ["pytest-runner"] if "test" in sys.argv else []
py_packages = [
"neuron",
"neuron.neuroml",
"neuron.tests",
"neuron.tests.utils",
"neuron.rxd",
"neuron.crxd",
"neuron.gui2",
] + (["neuron.rxd.geometry3d"] if Components.RX3D else [])
REL_RPATH = "@loader_path" if sys.platform[:6] == "darwin" else "$ORIGIN"
ext_common_libraries = ["nrniv"]
if not without_nrnpython:
nrn_python_lib = "nrnpython{}.{}".format(*sys.version_info[:2])
ext_common_libraries.append(nrn_python_lib)
extension_common_params = defaultdict(
list,
library_dirs=[os.path.join(cmake_build_dir, "lib")],
libraries=ext_common_libraries,
)
logging.info("Extension common compile flags %s" % str(extension_common_params))
# Get extra_compile_args and extra_link_args from environment variable
extra_link_args = os.environ.get("LDFLAGS", "").split()
extra_compile_args = os.environ.get("CFLAGS", "").split()
extensions = [
CMakeAugmentedExtension(
"neuron.hoc",
["src/nrnpython/inithoc.cpp"],
cmake_collect_dirs=NRN_COLLECT_DIRS,
cmake_flags=[
"-DNRN_ENABLE_CORENEURON=" + ("ON" if Components.CORENRN else "OFF"),
"-DNRN_ENABLE_INTERVIEWS=" + ("ON" if Components.IV else "OFF"),
"-DIV_ENABLE_X11_DYNAMIC=" + ("ON" if Components.IV else "OFF"),
"-DNRN_ENABLE_RX3D=" + ("ON" if Components.RX3D else "OFF"),
"-DNRN_ENABLE_MPI=" + ("ON" if Components.MPI else "OFF"),
"-DNRN_ENABLE_MPI_DYNAMIC=" + ("ON" if Components.MPI else "OFF"),
"-DNRN_ENABLE_PYTHON_DYNAMIC=ON",
"-DNRN_ENABLE_MODULE_INSTALL=OFF",
"-DNRN_ENABLE_REL_RPATH=ON",
"-DCMAKE_VERBOSE_MAKEFILE=OFF",
]
+ (
[
"-DNMODL_ENABLE_PYTHON_BINDINGS=ON",
]
if Components.CORENRN
else []
),
include_dirs=[
"src",
"src/oc",
"src/nrnpython",
"src/nrnmpi",
],
extra_compile_args=extra_compile_args + ["-std=c++17"],
extra_link_args=extra_link_args
+ [
"-Wl,-rpath,{}{}".format(
REL_RPATH, "/../../" if just_extensions else "/.data/lib/"
)
],
**extension_common_params,
)
]
if Components.MUSIC:
extensions += [
CyExtension(
"neuronmusic",
["src/neuronmusic/neuronmusic.pyx"],
include_dirs=["src/nrnpython", "src/nrnmusic"],
language="c++",
**extension_common_params,
)
]
if Components.RX3D:
include_dirs = ["share/lib/python/neuron/rxd/geometry3d", numpy.get_include()]
# Cython files take a long time to compile with O2 so default O0
# But pay the price if uploading distribution
rxd_params = extension_common_params.copy()
rxd_params["libraries"].append("rxdmath")
rxd_params.update(
dict(
# Cython files take a long time to compile with O2 but this
# is a distribution...
extra_compile_args=extra_compile_args
+ ["-O2" if "NRN_BUILD_FOR_UPLOAD" in os.environ else rx3d_opt_level],
extra_link_args=extra_link_args
+ ["-Wl,-rpath,{}".format(REL_RPATH + "/../../.data/lib/")],
)
)
logging.info("RX3D compile flags %s" % str(rxd_params))
extensions += [
CyExtension(
"neuron.rxd.geometry3d.graphicsPrimitives",
["share/lib/python/neuron/rxd/geometry3d/graphicsPrimitives.pyx"],
**rxd_params,
),
CyExtension(
"neuron.rxd.geometry3d.ctng",
["share/lib/python/neuron/rxd/geometry3d/ctng.pyx"],
include_dirs=include_dirs,
**rxd_params,
),
CyExtension(
"neuron.rxd.geometry3d.surfaces",
[
"share/lib/python/neuron/rxd/geometry3d/surfaces.pyx",
"src/nrnpython/rxd_marching_cubes.cpp",
"src/nrnpython/rxd_llgramarea.cpp",
],
include_dirs=include_dirs,
**rxd_params,
),
]
logging.info("RX3D is %s", "ENABLED" if Components.RX3D else "DISABLED")
# package name
package_name = "NEURON"
# For CI, we want to build separate wheel with "-nightly" suffix
package_name += os.environ.get("NEURON_NIGHTLY_TAG", "-nightly")
setup(
name=package_name,
package_dir={"": NRN_PY_ROOT},
packages=py_packages,
package_data={"neuron": ["*.dat"]},
ext_modules=extensions,
scripts=[
os.path.join(NRN_PY_SCRIPTS, f)
for f in os.listdir(NRN_PY_SCRIPTS)
if f[0] != "_"
],
use_scm_version={
"local_scheme": "no-local-version"
if os.getenv("NRN_NIGHTLY_UPLOAD", False) == "true"
else "node-and-date"
},
cmdclass=dict(build_ext=CMakeAugmentedBuilder, docs=Docs),
install_requires=[
"numpy>=1.9.3",
"packaging",
"find_libpython",
"setuptools<=70.3.0",
]
+ (
[
"sympy>=1.3",
"importlib_resources;python_version<'3.9'",
"importlib_metadata;python_version<'3.9'",
]
if Components.CORENRN
else []
),
tests_require=["flake8", "pytest"],
setup_requires=["wheel", "setuptools_scm"]
+ maybe_docs
+ maybe_test_runner
+ maybe_rxd_reqs,
dependency_links=[],
)
def mac_osx_setenv():
"""Set MacOS environment to build high-compat wheels"""
try:
# Also ensure wheel package is avail
import wheel
except ImportError:
from setuptools.dist import Distribution
Distribution().fetch_build_eggs(["wheel"])
from wheel.macosx_libfile import extract_macosx_min_system_version
sdk_root = (
subprocess.check_output(["xcrun", "--sdk", "macosx", "--show-sdk-path"])
.decode()
.strip()
)
logging.info("Setting SDKROOT=%s", sdk_root)
os.environ["SDKROOT"] = sdk_root
# Extract the macOS version targeted by the Python framework
py_osx_framework = extract_macosx_min_system_version(sys.executable)
def fmt(version):
return ".".join(str(x) for x in version)
if "MACOSX_DEPLOYMENT_TARGET" in os.environ:
# Don't override the value if it is set explicitly, but try and print a
# helpful message
explicit_target = tuple(
int(x) for x in os.environ["MACOSX_DEPLOYMENT_TARGET"].split(".")
)
if py_osx_framework is not None and explicit_target > py_osx_framework:
logging.warning(
"You are building wheels for macOS >={}; this is more "
"restrictive than your Python framework, which supports "
">={}".format(fmt(explicit_target), fmt(py_osx_framework))
)
else:
# Target not set explicitly, set MACOSX_DEPLOYMENT_TARGET to match the
# Python framework, or 10.9 if the version targeted by the framework
# cannot be determined
if py_osx_framework is None:
py_osx_framework = (10, 15)
if py_osx_framework < (10, 15):
logging.warning(
"C++17 support is required to build NEURON on macOS, "
"therefore minimum MACOSX_DEPLOYMENT_TARGET version is 10.15."
)
py_osx_framework = (10, 15)
if py_osx_framework > (10, 15):
logging.warning(
"You are building a wheel with a Python built for macOS >={}. "
"Your wheel won't run on older versions, consider using an "
"official Python build from python.org".format(fmt(py_osx_framework))
)
macos_target = "%d.%d" % tuple(py_osx_framework[:2])
logging.warning("Setting MACOSX_DEPLOYMENT_TARGET=%s", macos_target)
os.environ["MACOSX_DEPLOYMENT_TARGET"] = macos_target
if __name__ == "__main__":
if sys.platform[:6] == "darwin":
mac_osx_setenv()
setup_package()