forked from MontrealCorpusTools/speechcorpustools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (56 loc) · 1.89 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
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
def readme():
with open('README.md') as f:
return f.read()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['-x', '--strict', '--verbose', '--tb=long', 'tests']
self.test_suite = True
def run_tests(self):
if __name__ == '__main__': #Fix for multiprocessing infinite recursion on Windows
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(name='speechtools',
version='0.0.1',
description='',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Topic :: Text Processing :: Linguistic',
],
keywords='speech corpus phonetics',
url='https://github.com/MontrealCorpusTools/speechcorpustools',
author='Montreal Corpus Tools',
author_email='[email protected]',
packages=['speechtools',
'speechtools.acoustics',
'speechtools.graph',
'speechtools.graph.attributes',
'speechtools.gui',
'speechtools.gui.plot',
'speechtools.gui.plot.widgets',
'speechtools.gui.widgets',
'speechtools.io',
'speechtools.sql'],
install_requires=[
'acousticsim',
#'polyglotdb',
#'vispy',
'librosa',
],
entry_points = {
'console_scripts': ['sct=speechtools.command_line.sct:main',],
},
cmdclass={'test': PyTest},
extras_require={
'testing': ['pytest', 'pytest-qt'],
}
)