forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·99 lines (80 loc) · 3.25 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
#!/usr/bin/env python
import os
import sys
import time
# Import setuptools before importing distutils, so that setuptools
# can replace distutils by its own vendored copy.
import setuptools
from distutils import log
from setuptools import setup
# Work around a Cython problem in Python 3.8.x on macOS
# https://github.com/cython/cython/issues/3262
if os.uname().sysname == 'Darwin':
import multiprocessing
multiprocessing.set_start_method('fork', force=True)
# If build isolation is not in use and setuptools_scm is installed,
# then its file_finders entry point is invoked, which we don't need.
# Workaround from https://github.com/pypa/setuptools_scm/issues/190#issuecomment-351181286
try:
import setuptools_scm.integration
setuptools_scm.integration.find_files = lambda _: []
except ImportError:
pass
# Different workaround: disable `walk_revctrl` in setuptools
# This is needed for setuptools_scm >= 8, should work for any version
import setuptools.command.egg_info
setuptools.command.egg_info.walk_revctrl = lambda: ()
#########################################################
### Set source directory
#########################################################
# PEP 517 builds do not have . in sys.path
sys.path.insert(0, os.path.dirname(__file__))
import sage.env
sage.env.SAGE_SRC = os.getcwd()
from sage.env import *
#########################################################
### Configuration
#########################################################
from sage_setup.excepthook import excepthook
sys.excepthook = excepthook
from sage_setup.setenv import setenv
setenv()
from sage_setup.command.sage_build_cython import sage_build_cython
from sage_setup.command.sage_build_ext import sage_build_ext
from sage_setup.command.sage_install import sage_develop, sage_install
cmdclass = dict(build_cython=sage_build_cython,
build_ext=sage_build_ext,
develop=sage_develop,
install=sage_install)
#########################################################
### Discovering Sources
#########################################################
if any(x in sys.argv
for x in ['build', 'build_ext', 'bdist_wheel', 'install']):
log.info("Generating auto-generated sources")
from sage_setup.autogen import autogen_all
autogen_all()
# TODO: This should be quiet by default
print("Discovering Python/Cython source code....")
t = time.time()
distributions = ['sagemath-categories',
'sagemath-environment',
'sagemath-objects',
'sagemath-repl',
'']
log.warn('distributions = {0}'.format(distributions))
from sage_setup.find import find_python_sources
python_packages, python_modules, cython_modules = find_python_sources(
SAGE_SRC, ['sage'], distributions=distributions)
log.debug('python_packages = {0}'.format(python_packages))
log.debug('python_modules = {0}'.format(python_modules))
log.debug('cython_modules = {0}'.format(cython_modules))
print("Discovered Python/Cython sources, time: %.2f seconds." % (time.time() - t))
#########################################################
### Distutils
#########################################################
code = setup(
packages=python_packages,
cmdclass=cmdclass,
ext_modules=cython_modules,
)