-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name="sovits_tokenizer",
version="0.0.1",
author="Joseph Cheng",
author_email="[email protected]",
description="SovitsTokenizer: A low-bitrate audio tokenizer that converts speech into discrete tokens",
long_description=open("README.md").read(),
license="Apache2.0",
long_description_content_type="text/markdown",
url="https://github.com/hon9kon9ize/sovits-tokenizer",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.6",
include_package_data=True,
entry_points={
"console_scripts": ["s3tokenizer=s3tokenizer.cli:main"],
},
install_requires=[
"torch>=1.7.0",
"numpy==1.23.4",
"librosa==0.9.2",
"numba==0.56.4",
"pytorch-lightning",
"ffmpeg-python",
"transformers",
"einops",
],
)