forked from k2-fsa/sherpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
137 lines (114 loc) · 3.8 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
#!/usr/bin/env python3
import os
import re
import sys
from pathlib import Path
import setuptools
from cmake.cmake_extension import (
BuildExtension,
bdist_wheel,
cmake_extension,
is_windows,
)
if sys.argv[1] != "sdist":
if "K2_INSTALL_PREFIX" not in os.environ:
try:
import k2 # noqa
except ImportError:
sys.exit(
"""Please install k2 first. See
https://k2-fsa.github.io/sherpa/python/installation/index.html
for details."""
)
del k2
if "KALDIFEAT_INSTALL_PREFIX" not in os.environ:
try:
import kaldifeat # noqa
except ImportError:
sys.exit(
"""Please install kaldifeat first. See
https://k2-fsa.github.io/sherpa/python/installation/index.html
for details."""
)
del kaldifeat
if sys.version_info < (3,):
# fmt: off
print(
"Python 2 has reached end-of-life and is no longer supported by sherpa."
)
# fmt: on
sys.exit(-1)
if sys.version_info < (3, 7):
print(
"Python 3.6 has reached end-of-life on December 31st, 2021 "
"and is no longer supported by sherpa."
)
sys.exit(-1)
def read_long_description():
with open("README.md", encoding="utf8") as f:
readme = f.read()
return readme
def get_package_version():
with open("CMakeLists.txt") as f:
content = f.read()
match = re.search(r"set\(SHERPA_VERSION (.*)\)", content)
latest_version = match.group(1).strip('"')
return latest_version
def get_binaries_to_install():
bin_dir = Path("build") / "sherpa" / "bin"
bin_dir.mkdir(parents=True, exist_ok=True)
suffix = ".exe" if is_windows() else ""
# Remember to also change cmake/cmake_extension.py
binaries = ["sherpa-offline"]
binaries += ["sherpa-online", "sherpa-version"]
binaries += ["sherpa-online-microphone"]
binaries += ["sherpa-offline-websocket-server"]
binaries += ["sherpa-offline-websocket-client"]
binaries += ["sherpa-online-websocket-server"]
binaries += ["sherpa-online-websocket-client"]
binaries += ["sherpa-online-websocket-client-microphone"]
exe = []
for f in binaries:
t = bin_dir / (f + suffix)
exe.append(str(t))
return exe
package_name = "k2-sherpa"
with open("sherpa/python/sherpa/__init__.py", "a") as f:
f.write(f"__version__ = '{get_package_version()}'\n")
setuptools.setup(
name=package_name,
version=get_package_version(),
author="The sherpa development team",
author_email="[email protected]",
package_dir={
"sherpa": "sherpa/python/sherpa",
},
data_files=[("bin", get_binaries_to_install())],
packages=["sherpa"],
url="https://github.com/k2-fsa/sherpa",
long_description=read_long_description(),
long_description_content_type="text/markdown",
ext_modules=[cmake_extension("_sherpa")],
cmdclass={"build_ext": BuildExtension, "bdist_wheel": bdist_wheel},
zip_safe=False,
classifiers=[
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.7.0",
license="Apache licensed, as found in the LICENSE file",
)
# remove the line __version__ from sherpa/python/sherpa/__init__.py
with open("sherpa/python/sherpa/__init__.py", "r") as f:
lines = f.readlines()
with open("sherpa/python/sherpa/__init__.py", "w") as f:
for line in lines:
if "__version__" in line and "torch" not in line:
# skip __version__ = "x.x.x"
continue
f.write(line)