-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (42 loc) · 1.31 KB
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
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent.resolve()
meta = {}
exec((ROOT / "yapper/meta.py").read_text(), meta)
NAME, VERSION, GITHUB = meta["name"], meta["version"], meta["github"]
long_description = (ROOT / "README.md").read_text()
setup(
name=NAME,
version=VERSION,
author="Nitesh Yadav",
author_email="nitesh.txt@gmail.com",
description="AI powered text-ehancer and offline text-to-speech",
long_description=long_description,
long_description_content_type="text/markdown",
url=GITHUB,
packages=find_packages(),
install_requires=[
"pyttsx3",
"pygame",
],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
platforms="Posix; Windows",
keywords=[
"text-to-speech",
"offline text-to-speech",
"tts",
"speech synthesis",
],
python_requires=">=3.9",
license="MIT",
)