-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·34 lines (29 loc) · 1.12 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
"""Set up for rhasspysnips_nlu"""
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-snips-nlu",
version=version,
author="Michael Hansen",
author_email="[email protected]",
url="https://github.com/rhasspy/rhasspy-snips-nlu",
packages=setuptools.find_packages(),
package_data={"rhasspysnips_nlu": ["py.typed"]},
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
)