-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
65 lines (55 loc) · 2.13 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
from setuptools import setup, find_packages
version = '1.0.8'
description = 'An open-source offline speech-to-text package for Bangla language.'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
name = 'BanglaSpeech2Text'
author = 'sifat (shhossain)'
with open('requirements.txt') as f:
required = f.read().splitlines()
keywords = ['python','speech to text','voice to text','bangla speech to text', 'bangla speech recognation', 'whisper model', 'bangla asr model', 'offline speech to text', 'offline bangla speech to text', 'offline bangla voice recognation', 'voice recognation']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'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',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities',
'Operating System :: OS Independent',
]
projects_links = {
"Documentation": "https://github.com/shhossain/BanglaSpeech2Text",
"Source": "https://github.com/shhossain/BanglaSpeech2Text",
"Bug Tracker": "https://github.com/shhossain/BanglaSpeech2Text/issues",
}
setup(
name=name,
version=version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author=author,
url="https://github.com/shhossain/BanglaSpeech2Text",
project_urls=projects_links,
packages=find_packages(),
install_requires=required,
keywords=keywords,
classifiers=classifiers,
python_requires='>=3.7',
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'bnstt = banglaspeech2text.cli:main',
],
},
)