-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (31 loc) · 1.16 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
"""Setup for rhasspyasr_pocketsphinx_hermes"""
import os
import setuptools
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), "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-asr-pocketsphinx-hermes",
version=version,
author="Michael Hansen",
author_email="hansen.mike@gmail.com",
url="https://github.com/rhasspy/rhasspy-asr-pocketsphinx-hermes",
packages=setuptools.find_packages(),
install_requires=requirements,
entry_points={
"console_scripts": [
"rhasspyasr_pocketsphinx_hermes = rhasspyasr_pocketsphinx_hermes.__main__:main"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
)