forked from xorbitsai/inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (52 loc) · 2.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
# Copyright 2022-2023 XProbe Inc.
#
# 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.
import os
import platform
import sys
from sysconfig import get_config_vars
from pkg_resources import parse_version
from setuptools import setup
# From https://github.com/pandas-dev/pandas/pull/24274:
# For mac, ensure extensions are built for macos 10.9 when compiling on a
# 10.9 system or above, overriding distuitls behaviour which is to target
# the version that python was built for. This may be overridden by setting
# MACOSX_DEPLOYMENT_TARGET before calling setup.py
if sys.platform == "darwin":
if "MACOSX_DEPLOYMENT_TARGET" not in os.environ:
current_system = platform.mac_ver()[0]
python_target = get_config_vars().get(
"MACOSX_DEPLOYMENT_TARGET", current_system
)
target_macos_version = "10.9"
parsed_python_target = parse_version(python_target)
parsed_current_system = parse_version(current_system)
parsed_macos_version = parse_version(target_macos_version)
if parsed_python_target <= parsed_macos_version <= parsed_current_system:
os.environ["MACOSX_DEPLOYMENT_TARGET"] = target_macos_version
repo_root = os.path.dirname(os.path.abspath(__file__))
os.chdir(repo_root)
sys.path.append(repo_root)
versioneer = __import__("versioneer")
# build long description
def build_long_description():
readme_path = os.path.join(os.path.abspath(repo_root), "README.md")
with open(readme_path, encoding="utf-8") as f:
return f.read()
setup_options = dict(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=build_long_description(),
long_description_content_type="text/markdown",
)
setup(**setup_options)