-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
41 lines (36 loc) · 1.42 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
"""Setup script for rhasspy-hermes-app package"""
import os
import setuptools
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.rst"), "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
with open(
os.path.join(this_dir, "requirements.txt"), "r", encoding="utf-8"
) as requirements_file:
requirements = requirements_file.read().splitlines()
with open(os.path.join(this_dir, "VERSION"), "r", encoding="utf-8") as version_file:
version = version_file.read().strip()
setuptools.setup(
name="rhasspy-hermes-app",
version=version,
author="Koen Vervloesem",
author_email="[email protected]",
url="https://github.com/rhasspy/rhasspy-hermes-app",
packages=setuptools.find_packages(),
package_data={"rhasspyhermes_app": ["py.typed"]},
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.7",
)