forked from rhasspy/rhasspy-hermes-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.27 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
"""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") as readme_file:
long_description = readme_file.read()
with open(os.path.join(this_dir, "requirements.txt"), "r") as requirements_file:
requirements = requirements_file.read().splitlines()
with open(os.path.join(this_dir, "VERSION"), "r") 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",
"Topic :: Software Development :: Libraries",
],
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.7",
)