-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 817 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (31 loc) · 817 Bytes
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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="wham",
version="0.0.1",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Project-CETI/wham",
license="MIT",
packages=find_packages(),
package_dir={},
install_requires=[
"descript-audiotools @ git+https://github.com/hugofloresgarcia/audiotools.git",
"argbind",
"pandas",
"pathlib",
"pydub",
"ffmpeg-python",
"tqdm",
"scikit-learn",
"wandb",
"gdown", # For fetching large files from Google Drive
"soundfile",
"transformers",
"torch",
"Cython",
"fadtk",
"urllib3==2.0"
],
)