-
Notifications
You must be signed in to change notification settings - Fork 157
/
setup.py
127 lines (106 loc) · 3.95 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
# Copyright 2022 The envd Authors
#
# 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
from setuptools.command.sdist import sdist
from setuptools import setup, Extension, find_packages
from setuptools.command.build_ext import build_ext
from wheel.bdist_wheel import bdist_wheel
import subprocess
import logging
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
def build_envd_if_not_found():
if not os.path.isfile("bin/envd"):
logging.info("envd not found. Build from scratch")
try:
with open(".GIT_TAG_INFO") as f:
logging.info("Use build_tag from .GIT_TAG_INFO")
tag = f.read().strip()
logging.info("start building envd from source")
errno = subprocess.call(
["make", "build-release", "GIT_TAG={}".format(tag)]
)
except OSError:
logging.warning(".GIT_TAG_INFO not found")
logging.info("start building envd from source")
errno = subprocess.call(["make", "build-release"])
assert errno == 0, "Failed to build envd"
class EnvdExtension(Extension):
"""Extension for `envd`"""
class EnvdBuildExt(build_ext):
def build_extension(self, ext: Extension) -> None:
if not isinstance(ext, EnvdExtension):
return super().build_extension(ext)
build_envd_if_not_found()
class bdist_wheel_universal(bdist_wheel):
def get_tag(self):
*_, plat = super().get_tag()
return "py2.py3", "none", plat
class SdistCommand(sdist):
def run(self):
errno = subprocess.call(["make", "generate-git-tag-info"])
assert errno == 0, "Failed to generate git tag info"
if not os.path.isfile(".GIT_TAG_INFO"):
logging.warning(".GIT_TAG_INFO not found")
else:
logging.info(".GIT_TAG_INFO generated")
super().run()
def get_version():
# Remove prefix v in versioning
build_envd_if_not_found()
version = subprocess.check_output(
["./bin/envd", "version", "--short"], universal_newlines=True
).strip()
ver = version.rsplit(" ", 1)[-1][1:]
return ver
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Build Tools",
"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",
"Programming Language :: Python :: 3.11",
]
setup(
name="envd",
version=get_version(),
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="A development environment management tool for data scientists.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/tensorchord/envd",
license="Apache License 2.0",
author="TensorChord",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
data_files=[("bin", ["bin/envd"])],
classifiers=classifiers,
zip_safe=False,
ext_modules=[
EnvdExtension(name="envd", sources=["cmd/*"]),
],
cmdclass=dict(
build_ext=EnvdBuildExt,
sdist=SdistCommand,
bdist_wheel=bdist_wheel_universal,
),
)