-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (45 loc) · 1.19 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
44
45
46
47
48
49
from setuptools import find_packages, setup
with open('README.md') as file:
long_description = file.read()
setup(
name='ppgs',
description='Phonetic posteriorgrams',
version='0.0.8',
author='Interactive Audio Lab',
author_email='[email protected]',
url='https://github.com/interactiveaudiolab/ppgs',
extras_require={
'train': [
'dac',
'encodec',
'g2pM',
'gdown>=4.6.2',
'humanfriendly',
'nltk',
'pyyaml',
'torch-complex'
]
},
install_requires=[
'espnet',
'huggingface-hub',
'librosa',
'matplotlib',
'moviepy',
'numpy',
'pypar',
'torch',
'torchaudio',
'torchutil',
'tqdm',
'transformers',
'opencv-python',
'yapecs',
],
packages=find_packages(),
package_data={'ppgs': ['assets/*', 'assets/*/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['phonemes', 'ppg', 'pronunciation', 'speech'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')