-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (32 loc) · 1.02 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
from pathlib import Path
from setuptools import setup
from rasa_model_report.helpers import constants
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
setup(
name="rasa-model-report",
version=constants.VERSION,
author="Bruno Justo",
author_email="[email protected]",
license="Apache 2.0",
description="Simple open-source Rasa command-line add-on that "
"generates training model health reports for your projects.",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
url="https://github.com/brunohjs/rasa-model-report",
packages=[
"rasa_model_report",
"rasa_model_report.controllers",
"rasa_model_report.helpers"
],
install_requires=[
"Click",
"requests==2.28.1",
"pyyaml>=6.0"
],
entry_points="""
[console_scripts]
rasa-model-report=rasa_model_report.main:main
""",
)