-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (37 loc) · 1.12 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
from setuptools import setup, find_packages
setup(
name='rob_pitch',
version='0.1.2',
author='Xinsheng Wang, Mingqi Jiang',
author_email='[email protected], [email protected]',
packages=find_packages(),
description='Robust pitch prediction using PyTorch',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'hydra-core==1.3.2',
'modelscope==1.18.0',
'numpy==1.24.3',
'omegaconf==2.3.0',
'setuptools==69.5.1',
'soundfile==0.12.1',
'soxr==0.3.7',
'torch==2.0.1',
'torchaudio==2.0.2',
'tqdm==4.66.5'
],
package_data={
'': ['model.bin', 'config.yaml'],
},
include_package_data=True,
python_requires='>=3.6',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Artistic Software",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Software Development :: Libraries",
],
)