forked from persephone-tools/persephone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.25 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
from setuptools import setup
setup(name='persephone',
version='0.4.1',
description='A tool for developing automatic phoneme transcription models',
long_description=open('README.rst', encoding="utf8").read(),
url='https://github.com/oadams/persephone',
author='Oliver Adams',
author_email='[email protected]',
license='GPLv3',
packages=['persephone', 'persephone.datasets', 'persephone.preprocess'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='speech-recognition machine-learning acoustic-models artificial-intelligence neural-networks',
install_requires=[
'GitPython==2.1.8',
'nltk==3.4.5',
'numpy>=1.14.5,<2',
'python-speech-features==0.6',
'scipy>=1.1.0,<2',
'tensorflow>=1.13.1,<2',
'scikit-learn==0.21.2',
'pympi-ling==1.69',
'pydub==0.20.0',
'pint==0.9',
'gitdb',
],
include_package_data = True,
)