setup.py
1.68 KB
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
from setuptools import setup, find_packages, Extension
from os.path import join, dirname
setup(
name='etaloncorpuscreator',
version='0.1',
description='command-line package for automatical creation of russian language audio corpus from YouTube audiotracks and subtitles with using forced alignment by sphinx3',
url='https://github.com/dangrebenkin/audiocorpusbuilder',
author='Daniel Grebenkin',
author_email = 'd.grebenkin@g.nsu.ru',
license='Apache License Version 2.0',
keywords=['dataset', 'librosa', 'youtube-dl', 'youtube', 'forced alignment', 'sphinx','sphinx3'],
packages = find_packages(),
platforms = 'Linux',
entry_points ={
'console_scripts': [
'eccr = etaloncorpuscreator.corpus_creator:main'
]
},
install_requires=[
'pandas >= 1.1.1',
'audioread >= 2.0.0',
'numpy >= 1.15.0',
'packaging >= 18',
'scipy >= 1.0.0',
'scikit-learn >= 0.14.0, != 0.19.0',
'joblib >= 0.14',
'decorator >= 3.0.0',
'resampy >= 0.2.2',
'numba == 0.48',
'soundfile >= 0.9.0',
'pooch >= 1.0',
'librosa==0.7.0',
'youtube-dl>=2020.1.1'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8']
)