-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
54 lines (47 loc) · 1.24 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(*paths):
with open(os.path.join(*paths), 'r') as f:
return f.read()
requirements = [
'datasets',
'transformers<5.0',
'torchaudio',
'soundfile',
'torch',
'numpy'
]
extras = {
"lm":[
"pyctcdecode>=0.4.0",
# "kenlm @ https://github.com/kpu/kenlm/archive/refs/heads/master.zip"
]
}
setup(
name='pythaiasr',
version='1.3.0',
packages=['pythaiasr'],
url='https://github.com/pythainlp/pythaiasr',
license='Apache Software License 2.0',
author='Wannaphong Phatthiyaphaibun',
author_email='wannaphong@yahoo.com',
test_suite="tests",
keywords = 'asr',
description='Python Thai ASR',
install_requires=requirements,
extras_require=extras,
long_description=(read('README.md')),
long_description_content_type='text/markdown',
classifiers= [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: Thai',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
],
)