-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (50 loc) · 1.9 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
from setuptools import setup, find_packages
version = '0.0.3'
description = 'An open-source offline text-to-speech package for Bangla language. Convert text to speech in male or female voice.'
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
name = 'BanglaTTS'
author = 'sifat (shhossain)'
email = '<[email protected]>'
with open('requirements.txt') as f:
required = f.read().splitlines()
keywords = ['python','text to speech','bangla text to speech', 'bangla tts', 'offline bangla tts', 'offline bangla text to speech']
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/BanglaTTS",
"Source": "https://github.com/shhossain/BanglaTTS",
"Bug Tracker": "https://github.com/shhossain/BanglaTTS/issues",
}
setup(
name=name,
version=version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author=author,
author_email=email,
url="https://github.com/shhossain/BanglaTTS",
project_urls=projects_links,
packages=find_packages(),
install_requires=required,
keywords=keywords,
classifiers=classifiers,
python_requires='>=3.6',
)