-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 968 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-rca-report"
version = "0.1.3"
description = "Interactive RCA report generator for pytest runs, with AI-based analysis and visual dashboard"
readme = "README.md"
authors = [
{ name = "Keinar Elkayam", email = "keinar.elkayam@kaleidoo.ai" }
]
license = {text = "MIT"}
requires-python = ">=3.9"
# Requirements inferred from requirements.txt + parser.py
dependencies = [
"matplotlib",
"numpy",
"python-dotenv",
"openai"
]
[project.urls]
Homepage = "https://github.com/keinar/pytest-rca-report"
Repository = "https://github.com/keinar/pytest-rca-report"
# CLI support
[project.scripts]
pytest-rca-report = "rca_report.parser:main"
# Source layout
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"rca_report" = ["assets/*", "assets/**/*"]
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true