-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.74 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
from setuptools import find_packages
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(name='xesoft_moves',
version='0.0.1',
author='Vito De Tullio',
author_email='[email protected]',
description='the server that handles the moves',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/xesoftproject/moves',
packages=find_packages(),
package_data={'': (['localhost.crt', 'localhost.key'] +
['py.typed'] +
['model/am/final.mdl',
'model/conf/mfcc.conf',
'model/conf/model.conf',
'model/graph/disambig_tid.int',
'model/graph/Gr.fst',
'model/graph/HCLr.fst',
'model/graph/phones/word_boundary.int',
'model/ivector/final.dubm',
'model/ivector/final.ie',
'model/ivector/final.mat',
'model/ivector/global_cmvn.stats',
'model/ivector/online_cmvn.conf',
'model/ivector/splice.conf',
'model/README'])},
python_requires='>=3.8',
entry_points={
'console_scripts': ['moves-rest = moves.rest:main']
},
install_requires=[
'stomp.py',
'chess',
'quart-trio',
'trio-typing',
'hypercorn',
'quart-cors',
'trio_asyncio',
'jsonlines',
'mockito',
'vosk'
])