-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
39 lines (35 loc) · 1.29 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
#!/usr/bin/env python3
from pathlib import Path
from setuptools import setup
this_dir = Path(__file__).parent
module_dir = this_dir / "wyoming"
version_path = module_dir / "VERSION"
version = version_path.read_text(encoding="utf-8").strip()
# -----------------------------------------------------------------------------
setup(
name="wyoming",
version=version,
description="Protocol for Rhasspy Voice Assistant",
url="http://github.com/rhasspy/wyoming",
author="Michael Hansen",
author_email="[email protected]",
license="MIT",
packages=["wyoming", "wyoming.util"],
package_data={"wyoming": [str(p.relative_to(module_dir)) for p in (version_path,)]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Linguistic",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="voice assistant rhasspy",
extras_require={
"zeroconf": ["zeroconf==0.88.0"],
"http": ["Flask==3.0.2", "swagger-ui-py==23.9.23"],
},
)