forked from nv-legate/cunumeric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·91 lines (82 loc) · 3.02 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
#!/usr/bin/env python3
# Copyright 2021-2022 NVIDIA Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import print_function
import argparse
import os
import subprocess
import sys
from distutils.command.build_py import build_py
from distutils.core import setup
from setuptools import find_packages
# We need to know the prefix for the installation
# so we can know where to get the library
parser = argparse.ArgumentParser()
parser.add_argument("--prefix", required=False)
parser.add_argument(
"--recurse", required=False, default=False, action="store_true"
)
args, _ = parser.parse_known_args()
class my_build_py(build_py):
def run(self):
if not self.dry_run:
self.mkpath(self.build_lib)
# Compile up our C header here and insert it as a string
# into legate_core_cffi.py so that it is installed with
# the python library directly
root_dir = os.path.dirname(os.path.realpath(__file__))
header_src = os.path.join(
root_dir, "src", "cunumeric", "cunumeric_c.h"
)
output_dir = os.path.join(root_dir, "cunumeric")
include_dir = os.path.join(args.prefix, "include")
header = subprocess.check_output(
[
os.getenv("CC", "gcc"),
"-E",
"-DLEGATE_USE_PYTHON_CFFI",
"-I" + str(include_dir),
"-P",
header_src,
]
).decode("utf-8")
libpath = os.path.join(args.prefix, "lib")
with open(os.path.join(output_dir, "install_info.py.in")) as f:
content = f.read()
content = content.format(
header=repr(header), libpath=repr(libpath)
)
with open(os.path.join(output_dir, "install_info.py"), "wb") as f:
f.write(content.encode("utf-8"))
build_py.run(self)
# If we haven't been called from install.py then do that first
if args.recurse:
# Remove the recurse argument from the list
sys.argv.remove("--recurse")
setup(
name="cunumeric",
version="22.08.00",
packages=find_packages(
where=".",
include=["cunumeric*"],
),
package_data={"cunumeric": ["_sphinxext/_templates/*.rst"]},
include_package_data=True,
cmdclass={"build_py": my_build_py},
)
else:
with open("install.py") as f:
code = compile(f.read(), "install.py", "exec")
exec(code)