forked from 3-manifolds/SnapPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
614 lines (532 loc) · 22.2 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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
"""
Installation script for the snappy module.
Depends heavily on setuptools.
"""
no_setuptools_message = """
You need to have setuptools installed to build the snappy module. See:
https://packaging.python.org/installing/
"""
no_cython_message = """
You need to have Cython (>= 0.28) installed to build the snappy
module since you're missing the autogenerated C/C++ files, e.g.
sudo python -m pip install "cython>=0.28"
"""
no_sphinx_message = """
You need to have Sphinx (>= 1.3) installed to rebuild the
documentation for snappy module, e.g.
sudo python -m pip install "sphinx>=1.3"
"""
# On some python distributions for Mac OS X, one needs to set the environment
# variable MACOSX_DEPLOYMENT_TARGET to, e.g., 10.14.
import os, platform, shutil, site, subprocess, sys, sysconfig, re
from os.path import getmtime, exists
from distutils.util import get_platform
from distutils.ccompiler import get_default_compiler
from glob import glob
if sys.platform == 'darwin':
macOS_compile_args = macOS_link_args = []
try:
import setuptools
import pkg_resources
except ImportError:
raise ImportError(no_setuptools_message)
# Make sure setuptools is installed in a late enough version
try:
pkg_resources.working_set.require('setuptools>=1.0')
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
raise ImportError(old_setuptools_message)
from setuptools import distutils
# Remove '.' from the path so that Sphinx doesn't try to load the SnapPy module directly
try:
sys.path.remove(os.path.realpath(os.curdir))
except:
pass
from distutils.extension import Extension
from setuptools import setup, Command
from pkg_resources import load_entry_point
# A real clean
class SnapPyClean(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
junkdirs = (glob('build/lib*') +
glob('build/bdist*') +
glob('build/temp*') +
glob('snappy*.egg-info') +
['__pycache__', os.path.join('python', 'doc')]
)
for dir in junkdirs:
try:
shutil.rmtree(dir)
except OSError:
pass
junkfiles = glob('python/*.so*') + glob('python/*.pyc') + ['opengl/CyOpenGL.c']
for generated in ['SnapPy.c', 'SnapPy.h', 'SnapPyHP.cpp', 'SnapPyHP.h']:
junkfiles.append(os.path.join('cython', generated))
for file in junkfiles:
try:
os.remove(file)
except OSError:
pass
class SnapPyBuildDocs(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
pkg_resources.working_set.require('sphinx>=1.3')
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
raise ImportError(no_sphinx_message)
sphinx_cmd = load_entry_point('Sphinx>=1.3', 'console_scripts', 'sphinx-build')
sphinx_args = ['-a', '-E', '-d', 'doc_src/_build/doctrees',
'doc_src', 'python/doc']
import sphinx
if sphinx.version_info < (1, 7):
sphinx_args = ['sphinx'] + sphinx_args
sphinx_cmd(sphinx_args)
def distutils_dir_name(dname):
"""Returns the name of a distutils build subdirectory"""
name = "build/{prefix}.{plat}-{ver[0]}.{ver[1]}".format(
prefix=dname, plat=sysconfig.get_platform(), ver=sys.version_info)
if dname == 'temp' and sys.platform == 'win32':
name += os.sep + 'Release'
return name
def build_lib_dir():
return os.path.abspath(distutils_dir_name('lib'))
class SnapPyBuildAll(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
python = sys.executable
subprocess.call([python, 'setup.py', 'build'])
subprocess.call([python, 'setup.py', 'build_docs'])
subprocess.call([python, 'setup.py', 'build'])
class SnapPyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
sys.path.insert(0, build_lib_dir())
from snappy.test import runtests
print('Running tests ...')
sys.exit(runtests())
class SnapPyApp(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
sys.path.insert(0, build_lib_dir())
import snappy.app
snappy.app.main()
def check_call(args):
try:
subprocess.check_call(args)
except subprocess.CalledProcessError:
executable = args[0]
command = [a for a in args if not a.startswith('-')][-1]
raise RuntimeError(command + ' failed for ' + executable)
# For manylinux1 wheels, need to set the platform name manually to
# avoid having to "repair" the wheels later.
try:
from wheel.bdist_wheel import bdist_wheel
class SnapPyBuildWheel(bdist_wheel):
def initialize_options(self):
bdist_wheel.initialize_options(self)
if sys.platform.startswith('linux'):
plat = get_platform().replace('linux', 'manylinux1')
plat = plat.replace('-', '_')
self.plat_name = plat
except ImportError:
SnapPyBuildWheel = None
class SnapPyRelease(Command):
user_options = [('install', 'i', 'install the release into each Python')]
def initialize_options(self):
self.install = False
def finalize_options(self):
pass
def run(self):
if exists('build'):
shutil.rmtree('build')
if exists('dist'):
shutil.rmtree('dist')
pythons = os.environ.get('RELEASE_PYTHONS', sys.executable).split(',')
for python in pythons:
check_call([python, 'setup.py', 'build_all'])
check_call([python, 'setup.py', 'test'])
if sys.platform.startswith('linux'):
check_call([python, 'setup.py', 'bdist_egg'])
if self.install:
check_call([python, 'setup.py', 'pip_install'])
else:
check_call([python, 'setup.py', 'bdist_wheel'])
# Build sdist using the *first* specified Python
check_call([pythons[0], 'setup.py', 'sdist'])
# Double-check the Linux wheels
if sys.platform.startswith('linux'):
for name in os.listdir('dist'):
if name.endswith('.whl'):
subprocess.check_call(['auditwheel', 'repair', os.path.join('dist', name)])
class SnapPyPipInstall(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
python = sys.executable
check_call([python, 'setup.py', 'bdist_wheel'])
egginfo = 'snappy.egg-info'
if os.path.exists(egginfo):
shutil.rmtree(egginfo)
wheels = glob('dist' + os.sep + '*.whl')
new_wheel = max(wheels, key=os.path.getmtime)
check_call([python, '-m', 'pip', 'uninstall', '-y', 'snappy'])
check_call([python, '-m', 'pip', 'install', '--upgrade',
'--upgrade-strategy', 'only-if-needed',
new_wheel])
# C source files we provide
base_code = glob(os.path.join('kernel', 'kernel_code','*.c'))
unix_code = glob(os.path.join('kernel', 'unix_kit','*.c'))
for unused in ['unix_UI.c', 'decode_new_DT.c']:
file = os.path.join('kernel', 'unix_kit', unused)
if file in unix_code:
unix_code.remove(file)
addl_code = glob(os.path.join('kernel', 'addl_code', '*.c'))
addl_code += glob(os.path.join('kernel', 'addl_code', '*.cpp'))
code = base_code + unix_code + addl_code
# C++ source files we provide
hp_qd_code = glob(os.path.join('quad_double', 'qd', 'src', '*.cpp'))
# These are the Cython files that directly get compiled
cython_sources = ['cython/SnapPy.pyx', 'opengl/CyOpenGL.pyx']
cython_cpp_sources = ['cython/SnapPyHP.pyx']
# This is the complete list of Cython files, including those included
# by the above.
all_cython_files = cython_sources + cython_cpp_sources
all_cython_files += ['cython/SnapPycore.pxi', 'cython/SnapPy.pxi']
all_cython_files += glob(os.path.join('cython','core', '*.pyx'))
# If we have Cython, regenerate .c files as needed:
try:
from Cython.Build import cythonize
from Cython import __version__ as cython_version
if [int(x) for x in cython_version.split('.')] < [0, 28]:
raise ImportError
if 'clean' not in sys.argv:
cython_sources = [file for file in cython_sources if exists(file)]
cythonize(cython_sources,
compiler_directives={'embedsignature': True})
cython_cpp_sources = [file for file in cython_cpp_sources if exists(file)]
cythonize(cython_cpp_sources,
compiler_directives={'embedsignature': True})
except ImportError:
for file in cython_sources:
base = os.path.splitext(file)[0]
if not exists(base + '.c'):
raise ImportError(no_cython_message)
for file in cython_cpp_sources:
base = os.path.splitext(file)[0]
if not exists(base + '.cpp'):
raise ImportError(no_cython_message)
# We check manually which object files need to be rebuilt; distutils
# is overly cautious and always rebuilds everything, which makes
# development painful.
def replace_ext(file, new_ext):
root, ext = os.path.splitext(file)
return root + '.' + new_ext
def modtime(file):
if os.path.exists(file):
return os.path.getmtime(file)
else:
return 0.0
class SourceAndObjectFiles(object):
def __init__(self):
self.sources_to_build, self.up_to_date_objects = [], []
self.temp_dir = distutils_dir_name('temp')
self.obj_ext = 'obj' if sys.platform.startswith('win') else 'o'
def add(self, source_file, dependency_mod_time=0.0):
object_file = self.temp_dir + os.sep + replace_ext(source_file, self.obj_ext)
if modtime(object_file) < max(modtime(source_file), dependency_mod_time):
self.sources_to_build.append(source_file)
else:
self.up_to_date_objects.append(object_file)
snappy_ext_files = SourceAndObjectFiles()
hp_snappy_ext_files = SourceAndObjectFiles()
cy_source_mod_time = max([modtime('cython' + os.sep + file)
for file in all_cython_files])
snappy_ext_files.add('cython' + os.sep + 'SnapPy.c', cy_source_mod_time)
hp_snappy_ext_files.add('cython' + os.sep + 'SnapPyHP.cpp', cy_source_mod_time)
for file in code:
snappy_ext_files.add(file)
hp_file = 'quad_double' + replace_ext(file, 'cpp')[len('kernel'):]
assert os.path.exists(hp_file)
hp_snappy_ext_files.add(hp_file, modtime(file))
for hp_file in hp_qd_code:
hp_snappy_ext_files.add(hp_file)
# The compiler we will be using
cc = get_default_compiler()
for arg in sys.argv:
if arg.startswith('--compiler='):
cc = arg.split('=')[1]
# The SnapPy extension
snappy_extra_compile_args = []
snappy_extra_link_args = []
if sys.platform == 'win32':
if cc == 'msvc':
snappy_extra_compile_args.append('/EHsc')
# Uncomment to get debugging symbols for msvc.
# snappy_extra_compile_args += ['/DDEBUG', '/Zi',
# '/FdSnapPy.cp37-win_amd64.pdb']
else:
if sys.version_info.major == 2:
snappy_extra_link_args.append('-lmsvcr90')
elif sys.version_info == (3,4):
snappy_extra_link_args.append('-lmsvcr100')
if sys.platform == 'darwin':
snappy_extra_compile_args += macOS_compile_args
snappy_extra_link_args += macOS_link_args
SnapPyC = Extension(
name = 'snappy.SnapPy',
sources = snappy_ext_files.sources_to_build,
include_dirs = ['kernel/headers', 'kernel/unix_kit',
'kernel/addl_code', 'kernel/real_type'],
language='c++',
extra_compile_args=snappy_extra_compile_args,
extra_link_args=snappy_extra_link_args,
extra_objects = snappy_ext_files.up_to_date_objects)
# The high precision SnapPy extension
hp_extra_link_args = []
hp_extra_compile_args = []
if sys.platform == 'win32' and cc == 'msvc':
if platform.architecture()[0] == '32bit':
hp_extra_compile_args.append('/arch:SSE2')
hp_extra_compile_args.append('/EHsc')
# Uncomment to get debugging symbols for msvc.
# hp_extra_compile_args += ['/DDEBUG', '/Zi',
# '/FdSnapPyHP.cp37-win_amd64.pdb']
else:
hp_extra_compile_args = ['-msse2', '-mfpmath=sse', '-mieee-fp']
if sys.platform == 'darwin':
hp_extra_compile_args += macOS_compile_args
hp_extra_link_args += macOS_link_args
# SnapPyHP depends implicitly on the source for the main kernel, so we
# we delete certain object files to force distutils to rebuild them.
if len(hp_snappy_ext_files.sources_to_build):
ldir = distutils_dir_name('lib')
matches = glob(os.path.join(ldir, 'snappy', 'SnapPyHP.*'))
if len(matches) > 0:
os.remove(matches[0])
SnapPyHP = Extension(
name = 'snappy.SnapPyHP',
sources = hp_snappy_ext_files.sources_to_build,
include_dirs = ['kernel/headers', 'kernel/unix_kit',
'kernel/addl_code', 'kernel/kernel_code',
'quad_double/real_type', 'quad_double/qd/include'],
language='c++',
extra_compile_args = hp_extra_compile_args,
extra_link_args = hp_extra_link_args,
extra_objects = hp_snappy_ext_files.up_to_date_objects)
# The CyOpenGL extension
CyOpenGL_includes = ['.']
CyOpenGL_libs = []
CyOpenGL_extras = []
CyOpenGL_extra_link_args = []
if sys.platform == 'darwin':
OS_X_ver = int(platform.mac_ver()[0].split('.')[1])
sdk_roots = [
'/Library/Developer/CommandLineTools/SDKs',
'/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs'
]
version_strings = [ 'MacOSX10.%d.sdk' % OS_X_ver, 'MacOSX.sdk' ]
poss_roots = [ '' ] + [
'%s/%s' % (sdk_root, version_string)
for sdk_root in sdk_roots
for version_string in version_strings ]
header_dir = '/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers/'
poss_includes = [ root + header_dir for root in poss_roots ]
CyOpenGL_includes += [ path for path in poss_includes if os.path.exists(path)][:1]
CyOpenGL_extra_link_args = ['-framework', 'OpenGL']
CyOpenGL_extra_link_args += macOS_link_args
elif sys.platform == 'linux2' or sys.platform == 'linux':
CyOpenGL_includes += ['/usr/include/GL']
CyOpenGL_libs += ['GL']
elif sys.platform == 'win32':
if platform.architecture()[0] == '32bit':
CyOpenGL_extras += ['opengl/glew/lib/Release/Win32/glew32s.lib']
else:
CyOpenGL_extras += ['opengl/glew/lib/Release/x64/glew32s.lib']
if cc == 'msvc':
CyOpenGL_extras += ['opengl32.lib']
else:
CyOpenGL_includes += ['/mingw/include/GL']
CyOpenGL_extras += ['/mingw/lib/libopengl32.a']
CyOpenGL = Extension(
name = 'snappy.CyOpenGL',
sources = ['opengl/CyOpenGL.c'],
include_dirs = CyOpenGL_includes,
libraries = CyOpenGL_libs,
extra_objects = CyOpenGL_extras,
extra_link_args = CyOpenGL_extra_link_args,
language='c++'
)
# Twister
twister_main_path = 'twister/lib/'
twister_main_src = [twister_main_path + 'py_wrapper.cpp']
twister_kernel_path = twister_main_path + 'kernel/'
twister_kernel_src = [twister_kernel_path + file for file in
['twister.cpp', 'manifold.cpp', 'parsing.cpp', 'global.cpp']]
twister_extra_compile_args = []
twister_extra_link_args = []
if sys.platform == 'win32' and cc == 'msvc':
twister_extra_compile_args.append('/EHsc')
if sys.platform == 'darwin':
twister_extra_compile_args += macOS_compile_args
twister_extra_link_args += macOS_compile_args
TwisterCore = Extension(
name = 'snappy.twister.twister_core',
sources = twister_main_src + twister_kernel_src,
include_dirs=[twister_kernel_path],
extra_compile_args=twister_extra_compile_args,
extra_link_args=twister_extra_link_args,
language='c++' )
ext_modules = [SnapPyC, SnapPyHP, TwisterCore]
install_requires = ['plink>=2.3.1', 'spherogram>=1.8.3', 'FXrays>=1.3',
'pypng', 'decorator', 'snappy_manifolds>=1.1.1']
try:
import sage
except ImportError:
install_requires.append('cypari>=2.3')
install_requires.append('ipython>=0.13')
if sys.platform == 'win32':
install_requires.append('pyreadline>=2.0')
# Determine whether we will be able to activate the GUI code
try:
import tkinter as Tk
except ImportError:
Tk = None
if Tk is not None:
if sys.platform == 'win32': # really only for Visual C++
ext_modules.append(CyOpenGL)
else:
missing = {}
for header in ['gl.h']:
results = [exists(os.path.join(path, header))
for path in CyOpenGL_includes]
missing[header] = (True in results)
if False in missing.values():
print("***WARNING***: OpenGL headers not found, "
"not building CyOpenGL, "
"will disable some graphics features.")
else:
ext_modules.append(CyOpenGL)
else:
print("***WARNING**: Tkinter not installed, GUI won't work")
# Get version number:
exec(open('python/version.py').read())
# Get long description from README
long_description = open('README.rst').read()
long_description = long_description.split('Downloads')[0]
# Off we go ...
setup( name = 'snappy',
version = version,
zip_safe = False,
python_requires = '>=3',
install_requires = install_requires,
packages = ['snappy', 'snappy/manifolds', 'snappy/twister',
'snappy/snap', 'snappy/snap/t3mlite', 'snappy/snap/peripheral',
'snappy/ptolemy',
'snappy/verify',
'snappy/verify/complex_volume',
'snappy/verify/upper_halfspace',
'snappy/verify/maximal_cusp_area_matrix',
'snappy/raytracing',
'snappy/raytracing/shaders',
'snappy/raytracing/zoom_slider',
'snappy/togl',
'snappy/dev',
'snappy/dev/extended_ptolemy',
'snappy/dev/vericlosed',
'snappy/dev/vericlosed/orb',
],
package_data = {
'snappy' : ['info_icon.gif', 'SnapPy.ico', 'SnapPy.png',
'doc/*.*',
'doc/_images/*',
'doc/_sources/*',
'doc/_static/*'],
'snappy/togl': ['*-tk*/Togl2.0/*',
'*-tk*/Togl2.1/*',
'*-tk*/mactoolbar*/*'],
'snappy/manifolds' : ['HTWKnots/*.gz'],
'snappy/twister' : ['surfaces/*'],
'snappy/ptolemy':['magma/*.magma_template',
'testing_files/*magma_out.bz2',
'testing_files/data/pgl2/OrientableCuspedCensus/03_tetrahedra/*magma_out',
'regina_testing_files/*magma_out.bz2',
'testing_files_generalized/*magma_out.bz2',
'regina_testing_files_generalized/*magma_out.bz2',
'testing_files_rur/*rur.bz2'],
'snappy/raytracing/shaders' : ['*.glsl'],
'snappy/raytracing/zoom_slider': ['*.png', '*.gif'],
'snappy/raytracing/zoom_slider': ['*.png'],
'snappy/dev/vericlosed/orb' : ['orb_solution_for_snappea_finite_triangulation_mac'],
},
package_dir = {'snappy':'python', 'snappy/manifolds':'python/manifolds',
'snappy/twister':'twister/lib', 'snappy/snap':'python/snap',
'snappy/snap/t3mlite':'python/snap/t3mlite',
'snappy/snap/peripheral':'python/snap/peripheral',
'snappy/ptolemy':'python/ptolemy',
'snappy/verify':'python/verify',
'snappy/verify/complex_volume':'python/verify/complex_volume',
'snappy/verify/upper_halfspace':'python/verify/upper_halfspace',
'snappy/verify/maximal_cusp_area_matrix':'python/verify/maximal_cusp_area_matrix',
'snappy/raytracing':'python/raytracing',
'snappy/raytracing/shaders':'python/raytracing/shaders',
'snappy/raytracing/zoom_slider':'python/raytracing/zoom_slider',
'snappy/togl': 'python/togl',
'snappy/dev':'dev/python',
'snappy/dev/extended_ptolemy':'dev/extended_ptolemy',
'snappy/dev/vericlosed':'dev/vericlosed',
'snappy/dev/vericlosed/orb':'dev/vericlosed/orb'
},
ext_modules = ext_modules,
cmdclass = {'clean' : SnapPyClean,
'build_docs': SnapPyBuildDocs,
'build_all': SnapPyBuildAll,
'test': SnapPyTest,
'app': SnapPyApp,
'release': SnapPyRelease,
'bdist_wheel':SnapPyBuildWheel,
'pip_install':SnapPyPipInstall,
},
entry_points = {'console_scripts': ['SnapPy = snappy.app:main']},
description= 'Studying the topology and geometry of 3-manifolds, with a focus on hyperbolic structures.',
long_description = long_description,
long_description_content_type = 'text/x-rst',
author = 'Marc Culler and Nathan M. Dunfield',
author_email = '[email protected], [email protected]',
license='GPLv2+',
url = 'http://snappy.computop.org',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: C',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Cython',
'Topic :: Scientific/Engineering :: Mathematics',
],
keywords = '3-manifolds, topology, hyperbolic geometry',
)