-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
47 lines (45 loc) · 1.52 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
from setuptools import find_packages, setup
requirements = {
"install": [
"setuptools>=38.5.1",
"librosa>=0.8.0",
"onnxruntime",
"sentencepiece>=0.1.91,!=0.1.92",
"typeguard==2.13.0",
"PyYAML>=5.1.2",
"g2p-en",
"jamo==0.4.1", # For kss
"six",
"numpy",
"espnet_tts_frontend", # required for TTS preprocess.
],
"test": ["torch>=1.11.0", "espnet", "pytest"],
}
setup(
name="espnet_onnx",
version="0.2.1",
url="https://github.com/Masao-Someki/espnet_onnx",
author="Masao Someki",
author_email="[email protected]",
description="ONNX Wrapper for ESPnet",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="espnet onnxruntime",
license="MIT",
packages=find_packages(include=["espnet_onnx*"]),
install_requires=requirements["install"],
tests_require=requirements["test"],
python_requires=">=3.7.0",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)