-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
43 lines (39 loc) · 1.08 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
from setuptools import find_packages, setup
with open('README.md', encoding='utf8') as file:
long_description = file.read()
setup(
name='promonet',
description='Prosody Modification Network',
version='0.0.1',
author='Interactive Audio Lab',
author_email='[email protected]',
url='https://github.com/maxrmorrison/promonet',
install_requires=[
'GPUtil',
'huggingface-hub',
'jiwer',
'librosa',
'matplotlib',
'numpy',
'openai-whisper',
'penn',
'ppgs',
'pypar',
'pyworld',
'resampy',
'scipy',
'soundfile',
'transformers',
'torch',
'torchaudio',
'torchutil',
'umap-learn',
'vocos[train]',
'yapecs',
],
packages=find_packages(),
package_data={'promonet': ['assets/*', 'assets/*/*', 'assets/*/*/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['speech', 'prosody', 'editing', 'synthesis', 'pronunciation'],
license='MIT')