-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
56 lines (43 loc) · 1.61 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
50
51
try:
from setuptools import setup #enables develop
except ImportError:
from distutils.core import setup
install_requires = [
'tensorflow',
'pandas',
'pysptk',
'six',
'matplotlib',
'python_speech_features',
'tqdm',
'scikit_learn',
'setuptools',
'numpy',
'scipy',
'matplotlib',
]
setup(
name='phonet',
version='0.3.7',
description='Compute phonological posteriors from speech signals using a deep learning scheme',
author='J. C. Vasquez-Correa',
author_email='juan.vasquez@fau.de',
url='https://github.com/jcvasquezc/phonet',
download_url='https://github.com/jcvasquezc/phonet/archive/0.3.7.tar.gz',
license='MIT',
install_requires=install_requires,
packages=['phonet'],
package_data={'': ['audios/*', 'models/*']},
keywords = ['phonological', 'speech', 'speech features', 'articulatory features', 'phoneme recognition'],
dependency_links=['git+git://github.com/jameslyons/python_speech_features'],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)