-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (38 loc) · 1.43 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
from pathlib import Path # noqa: D100
import setuptools
from setuptools import setup
this_dir = Path(__file__).parent
module_dir = this_dir / "wyoming_microsoft_stt"
requirements = []
requirements_path = this_dir / "requirements.txt"
if requirements_path.is_file():
with open(requirements_path, encoding="utf-8") as requirements_file:
requirements = requirements_file.read().splitlines()
data_files = [module_dir / "languages.json"]
# -----------------------------------------------------------------------------
setup(
name="wyoming_microsoft_stt",
version="1.0.7",
description="Wyoming Server for Microsoft STT",
url="https://github.com/hugobloem/wyoming-microsoft-stt",
author="Hugo Bloem",
author_email="",
license="MIT",
packages=setuptools.find_packages(),
package_data={
"wyoming_microsoft_stt": [str(p.relative_to(module_dir)) for p in data_files]
},
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="rhasspy wyoming microsft stt",
)