-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (34 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
from setuptools import find_packages, setup
with open('README.md', encoding='utf8') as file:
long_description = file.read()
setup(
name='emphases',
description='Crowdsourced and Automatic Speech Prominence Estimation',
version='0.0.2',
author='Interactive Audio Lab',
author_email='[email protected]',
url='https://github.com/interactiveaudiolab/emphases',
install_requires=[
'GPUtil',
'huggingface-hub',
'librosa',
'matplotlib',
'numpy',
'penn',
'pycwt',
'pyfoal',
'pypar',
'pyyaml',
'reseval',
'scipy',
'torch',
'torchutil',
'torchaudio',
'yapecs'],
packages=find_packages(),
package_data={'emphases': ['assets/*', 'assets/*/*']},
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['annotatation', 'audio', 'emphasis', 'prominence', 'speech'],
classifiers=['License :: OSI Approved :: MIT License'],
license='MIT')