-
Notifications
You must be signed in to change notification settings - Fork 284
/
setup.py
190 lines (172 loc) · 7.22 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
183
184
185
186
187
188
189
190
# Copyright 2018 The TensorFlow Authors. All Rights Reserved.
#
# 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.
# ==============================================================================
"""Setup for pip package."""
import os
import sys
import shutil
import tempfile
import fnmatch
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
# read package version and require from:
# tensorflow_io/python/ops/version_ops.py
with open(os.path.join(here, "tensorflow_io/python/ops/version_ops.py")) as f:
entries = [e.strip() for e in f.readlines() if not e.startswith("#")]
assert sum(e.startswith("version = ") for e in entries) == 1
assert sum(e.startswith("require = ") for e in entries) == 1
version = list(e[10:] for e in entries if e.startswith("version = "))[0].strip('"')
require = list(e[10:] for e in entries if e.startswith("require = "))[0].strip('"')
assert version != ""
assert require != ""
if "--install-require" in sys.argv:
print(require)
sys.exit(0)
subpackages = ["tensorflow-io-gcs-filesystem"]
if "--project" in sys.argv:
project_idx = sys.argv.index("--project")
project = sys.argv[project_idx + 1]
sys.argv.remove("--project")
sys.argv.pop(project_idx)
else:
project = "tensorflow-io"
assert (
project.replace("_", "-") == "tensorflow-io"
or project.replace("_", "-") in subpackages
), "--project ({} or {}) must be provided, found {}".format(
"tensorflow-io", ", ".join(subpackages), project
)
project = project.replace("_", "-")
exclude = (
["tests", "tests.*"]
+ [e.replace("-", "_") for e in subpackages if e != project]
+ ["{}.*".format(e.replace("-", "_")) for e in subpackages if e != project]
+ (["tensorflow_io", "tensorflow_io.*"] if project != "tensorflow-io" else [])
)
project_rootpath = project.replace("-", "_")
if "--nightly" in sys.argv:
nightly_idx = sys.argv.index("--nightly")
version = version + ".dev" + sys.argv[nightly_idx + 1]
project = project + "-nightly"
sys.argv.remove("--nightly")
sys.argv.pop(nightly_idx)
install_requires = []
if project == "tensorflow-io":
install_requires = [f"{e}=={version}" for e in subpackages]
elif project == "tensorflow-io-nightly":
install_requires = [f"{e}-nightly=={version}" for e in subpackages]
print(f"Project: {project}")
print(f"Exclude: {exclude}")
print(f"Install Requires: {install_requires}")
print(f"Project Rootpath: {project_rootpath}")
datapath = None
if "--data" in sys.argv:
data_idx = sys.argv.index("--data")
datapath = sys.argv[data_idx + 1]
sys.argv.remove("--data")
sys.argv.pop(data_idx)
else:
datapath = os.environ.get("TFIO_DATAPATH")
if (datapath is not None) and ("bdist_wheel" in sys.argv):
rootpath = tempfile.mkdtemp()
print(f"setup.py - create {rootpath} and copy {project_rootpath} data files")
for rootname, _, filenames in os.walk(os.path.join(datapath, project_rootpath)):
if not fnmatch.fnmatch(rootname, "*test*") and not fnmatch.fnmatch(
rootname, "*runfiles*"
):
for filename in [
f
for f in filenames
if fnmatch.fnmatch(f, "*.so") or fnmatch.fnmatch(f, "*.py")
]:
# NOTE:
# cc_grpc_library will generate a lib<name>_cc_grpc.so
# proto_library will generate a lib<name>_proto.so
# both .so files are not needed in final wheel.
# The cc_grpc_library only need to pass `linkstatic = True`
# to the underlying native.cc_library. However it is not
# exposed. proto_library is a native library in bazel which
# we could not patch easily as well.
# For that reason we skip lib<name>_cc_grpc.so and lib<name>_proto.so:
if filename.endswith("_cc_grpc.so") or filename.endswith("_proto.so"):
continue
src = os.path.join(rootname, filename)
dst = os.path.join(
rootpath,
os.path.relpath(os.path.join(rootname, filename), datapath),
)
print(f"setup.py - copy {src} to {dst}")
os.makedirs(os.path.dirname(dst), exist_ok=True)
shutil.copyfile(src, dst)
sys.argv.append("--bdist-dir")
sys.argv.append(rootpath)
# Get the long description from the README file
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
class BinaryDistribution(setuptools.dist.Distribution):
def has_ext_modules(self):
return True
setuptools.setup(
name=project,
version=version,
description="TensorFlow IO",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tensorflow/io",
download_url="https://github.com/tensorflow/io/tags",
author="Google Inc.",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="tensorflow io machine learning",
packages=setuptools.find_packages(where=".", exclude=exclude),
python_requires=">=3.7, <3.13",
install_requires=install_requires,
extras_require={
"tensorflow": [require],
"tensorflow-gpu": [require.replace("tensorflow", "tensorflow-gpu")],
"tensorflow-cpu": [require.replace("tensorflow", "tensorflow-cpu")],
"tensorflow-rocm": [require.replace("tensorflow", "tensorflow-rocm")],
"tensorflow-aarch64": [require.replace("tensorflow", "tensorflow-aarch64")],
},
package_data={
".": ["*.so"],
},
project_urls={
"Source": "https://github.com/tensorflow/io",
"Bug Reports": "https://github.com/tensorflow/io/issues",
"Documentation": "https://tensorflow.org/io",
},
zip_safe=False,
distclass=BinaryDistribution,
)