-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (40 loc) · 1.04 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
from setuptools import find_packages, setup
with open('README.md', encoding='utf-8') as file:
long_description = file.read()
setup(
name='pyfoal',
description='Python forced aligner',
version='1.0.1',
author='Max Morrison',
author_email='maxrmorrison@gmail.com',
url='https://github.com/maxrmorrison/pyfoal',
install_requires=[
'g2p_en',
'librosa',
'matplotlib',
'numpy',
'phonemizer',
'pypar',
'requests',
'scikit-learn',
'scipy',
'soundfile',
'tensorboard',
'torch',
'torchaudio',
'tqdm',
'yapecs'],
packages=find_packages(),
package_data={'pyfoal': ['assets/*', 'assets/*/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
'align',
'alignment',
'attention',
'duration',
'phoneme',
'speech',
'word'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')