-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
74 lines (59 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
try:
from setuptools import setup, find_packages #enables develop
except ImportError:
from distutils.core import setup, find_packages
import pathlib
install_requires = [
'kaldi_io',
'tqdm',
'matplotlib',
'numpy',
'torch',
'librosa',
'pandas',
'pysptk',
'phonet',
'scipy',
'scikit_learn',
]
HERE = pathlib.Path(__file__).parent
LONG_DESCRIPTION = (HERE / "README.md").read_text()
LONG_DESC_TYPE = "text/markdown"
setup(
name='disvoice',
version='0.1.8',
packages=find_packages(),
description='Python framework designed to compute different types of features from speech files',
author='J. C. Vasquez-Correa',
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author_email='juan.vasquez@fau.de',
url='https://github.com/jcvasquezc/disvoice',
download_url='https://github.com/jcvasquezc/disvoice/#files',
project_urls={
"Source code": "https://github.com/jcvasquezc/disvoice",
"Documentation": "https://disvoice.readthedocs.io/en/latest/",
"Bug Tracker": "https://github.com/jcvasquezc/DisVoice/issues"
},
license='MIT',
install_requires=install_requires,
package_data={'': ['audios/*', "*.praat", "*.pt"]},
keywords = ['speech', 'speech features', 'articulatory features', 'phoneme recognition', 'prosody', 'praat'],
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
'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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
],
)