-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (41 loc) · 1.16 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
from pathlib import Path
from setuptools import find_packages, setup
ROOT = Path(__file__).parent.resolve()
meta = {}
exec((ROOT / "listener/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="Real time speech to text",
long_description=long_description,
long_description_content_type="text/markdown",
url=GITHUB,
packages=find_packages(),
install_requires=[
"numpy",
"pynvml",
"onnxruntime",
"sounddevice",
"faster-whisper",
],
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
platforms="Posix; Windows",
keywords=[
"speech-to-text",
"offline speech to text",
"stt",
],
python_requires=">=3.9",
license="MIT",
)