-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
79 lines (74 loc) · 2.81 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
70
71
72
73
74
75
76
77
78
79
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
import corpustools
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 = ['--strict', '--verbose', '--tb=long', 'tests']
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(name='corpustools',
version=corpustools.__version__,
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='phonology corpus phonetics',
url='https://github.com/kchall/CorpusTools',
author='Phonological Corpus Tools',
author_email='[email protected]',
packages=['corpustools',
'corpustools.acousticsim',
'corpustools.corpus',
'corpustools.corpus.classes',
'corpustools.corpus.io',
'corpustools.freqalt',
'corpustools.funcload',
'corpustools.kl',
'corpustools.prod',
'corpustools.phonosearch',
'corpustools.gui',
'corpustools.informativity',
'corpustools.symbolsim',
'corpustools.neighdens',
'corpustools.mutualinfo',
'corpustools.phonoprob',
'corpustools.command_line'],
dependency_links = ['https://github.com/kylebgorman/textgrid/tarball/master#egg=textgrid-1.0'],
install_requires=[
'numpy',
'scipy',
'textgrid',
'pyqt5',
'sklearn',
'regex'
#'python-acoustic-similarity'
],
entry_points = {
'console_scripts': ['pct=corpustools.command_line.pct:main',
'pct_corpus=corpustools.command_line.pct_corpus:main',
'pct_funcload=corpustools.command_line.pct_funcload:main',
'pct_neighdens=corpustools.command_line.pct_neighdens:main',
'pct_mutualinfo=corpustools.command_line.pct_mutualinfo:main',
'pct_kl=corpustools.command_line.pct_kl:main',
'pct_search=corpustools.command_line.pct_search:main',
'pct_visualize=corpustools.command_line.pct_visualize:main'],
},
cmdclass={'test': PyTest},
extras_require={
'testing': ['pytest'],
}
)