-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
42 lines (38 loc) · 1.29 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
from setuptools import find_packages, setup
with open('README.md') as file:
long_description = file.read()
setup(
name='penn',
description='Pitch Estimating Neural Networks (PENN)',
version='0.0.14',
author='Max Morrison, Caedon Hsieh, Nathan Pruyne, and Bryan Pardo',
author_email='[email protected]',
url='https://github.com/interactiveaudiolab/penn',
extras_require={
'train': [
'librosa', # 0.9.1
'matplotlib', # 3.6.1
'pyworld', # 0.3.2
'scipy', # 1.9.3
'torchcrepe' # 0.0.17
],
'test': [
'librosa', # 0.9.1
'pytest', # 8.2.2
]
},
install_requires=[
'huggingface_hub', # 0.11.1
'numpy', # 1.23.4
'torch', # 1.12.1+cu113
'torchaudio', # 0.12.1+cu113
'torchutil', # 0.0.7
'yapecs' # 0.0.6
],
packages=find_packages(),
package_data={'penn': ['assets/*', 'assets/*/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['audio', 'frequency', 'music', 'periodicity', 'pitch', 'speech'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')