-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.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
import os
from setuptools import setup
here = os.path.dirname(os.path.abspath(__file__))
about = {}
with open(os.path.join(here, "asre2e", "__version__.py")) as f:
exec(f.read(), about)
install_requires = [
"numpy",
]
setup(
name="asre2e",
version=about["__version__"],
url="https://github.com/panpan-wu/asre2e",
author="Panpan Wu",
author_email="[email protected]",
description="ASRE2E: end-to-end auto speech recognition",
license="Apache Software License",
packages=["asre2e"],
install_requires=install_requires,
entry_points={
"console_scripts": [
"asre2e_train = asre2e.train:main",
"asre2e_recognize = asre2e.recognize:main",
]
},
python_requires=">=3.8.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
],
)