forked from taichi-dev/taichi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
182 lines (153 loc) · 5.78 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
# Optional environment variables supported by setup.py:
# {DEBUG, RELWITHDEBINFO, MINSIZEREL}
# build the C++ taichi_python extension with various build types.
#
# TAICHI_CMAKE_ARGS
# extra cmake args for C++ taichi_python extension.
import glob
import multiprocessing
import os
import platform
import shutil
import sys
from distutils.command.clean import clean
from distutils.dir_util import remove_tree
from setuptools import find_packages
from skbuild import setup
from skbuild.command.egg_info import egg_info
root_dir = os.path.dirname(os.path.abspath(__file__))
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Topic :: Software Development :: Compilers',
'Topic :: Multimedia :: Graphics',
'Topic :: Games/Entertainment :: Simulation',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
def get_version():
if os.getenv("RELEASE_VERSION"):
version = os.environ["RELEASE_VERSION"]
else:
version_file = os.path.join(os.path.dirname(__file__), 'version.txt')
with open(version_file, 'r') as f:
version = f.read().strip()
return version.lstrip("v")
project_name = os.getenv('PROJECT_NAME', 'taichi')
version = get_version()
TI_VERSION_MAJOR, TI_VERSION_MINOR, TI_VERSION_PATCH = version.split('.')
data_files = glob.glob('python/_lib/runtime/*')
print(data_files)
packages = find_packages('python')
print(packages)
# Our python package root dir is python/
package_dir = 'python'
def remove_tmp(taichi_dir):
shutil.rmtree(os.path.join(taichi_dir, 'assets'), ignore_errors=True)
class EggInfo(egg_info):
def finalize_options(self, *args, **kwargs):
if '' not in self.distribution.package_dir:
# Issue#4975: skbuild loses the root package dir
self.distribution.package_dir[''] = package_dir
return super().finalize_options(*args, **kwargs)
def copy_assets():
taichi_dir = os.path.join(package_dir, 'taichi')
remove_tmp(taichi_dir)
shutil.copytree('external/assets', os.path.join(taichi_dir, 'assets'))
class Clean(clean):
def run(self):
super().run()
self.build_temp = os.path.join(root_dir, '_skbuild')
if os.path.exists(self.build_temp):
remove_tree(self.build_temp, dry_run=self.dry_run)
generated_folders = ('bin', 'dist', 'python/taichi/assets',
'python/taichi/_lib/runtime', 'taichi.egg-info',
'python/taichi.egg-info', 'build')
for d in generated_folders:
if os.path.exists(d):
remove_tree(d, dry_run=self.dry_run)
generated_files = [
'taichi/common/commit_hash.h', 'taichi/common/version.h'
]
generated_files += glob.glob('taichi/runtime/llvm/runtime_*.bc')
generated_files += glob.glob('python/taichi/_lib/core/*.so')
generated_files += glob.glob('python/taichi/_lib/core/*.pyd')
for f in generated_files:
if os.path.exists(f):
print(f'removing generated file {f}')
if not self.dry_run:
os.remove(f)
def get_cmake_args():
import shlex
num_threads = os.getenv('BUILD_NUM_THREADS', multiprocessing.cpu_count())
cmake_args = shlex.split(os.getenv('TAICHI_CMAKE_ARGS', '').strip())
if (os.getenv('DEBUG', '0') in ('1', 'ON')):
cfg = 'Debug'
elif (os.getenv('RELWITHDEBINFO', '0') in ('1', 'ON')):
cfg = 'RelWithDebInfo'
elif (os.getenv('MINSIZEREL', '0') in ('1', 'ON')):
cfg = 'MinSizeRel'
else:
cfg = None
build_options = []
if cfg:
build_options.extend(['--build-type', cfg])
if sys.platform == 'win32':
build_options.extend(['-G', 'Ninja', '--skip-generator-test'])
sys.argv[2:2] = build_options
cmake_args += [
f'-DTI_VERSION_MAJOR={TI_VERSION_MAJOR}',
f'-DTI_VERSION_MINOR={TI_VERSION_MINOR}',
f'-DTI_VERSION_PATCH={TI_VERSION_PATCH}',
]
if sys.platform != 'win32':
os.environ['SKBUILD_BUILD_OPTIONS'] = f'-j{num_threads}'
if sys.platform == "darwin":
if platform.machine() == "arm64":
cmake_args += ["-DCMAKE_OSX_ARCHITECTURES=arm64"]
else:
cmake_args += ["-DCMAKE_OSX_ARCHITECTURES=x86_64"]
return cmake_args
def exclude_paths(manifest_files):
return [
f for f in manifest_files
if f.endswith(('.so', 'pyd',
'.bc')) or os.path.basename(f) == 'libMoltenVK.dylib'
]
copy_assets()
setup(name=project_name,
packages=packages,
package_dir={"": package_dir},
version=version,
description='The Taichi Programming Language',
author='Taichi developers',
author_email='[email protected]',
url='https://github.com/taichi-dev/taichi',
python_requires=">=3.6,<3.11",
install_requires=[
'numpy', 'sourceinspect>=0.0.4', 'colorama', 'rich',
'astunparse;python_version<"3.9"'
],
data_files=[(os.path.join('_lib', 'runtime'), data_files)],
keywords=['graphics', 'simulation'],
license=
'Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)',
include_package_data=True,
entry_points={
'console_scripts': [
'ti=taichi._main:main',
],
},
classifiers=classifiers,
cmake_args=get_cmake_args(),
cmake_process_manifest_hook=exclude_paths,
cmdclass={
'egg_info': EggInfo,
'clean': Clean
},
has_ext_modules=lambda: True)