-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (55 loc) · 1.94 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentic-testops"
version = "0.2.0"
description = "Agentic TestOps for Python projects: automated pytest execution, failure diagnosis, and repair advice."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Strangelight-Merser" }]
maintainers = [{ name = "Strangelight-Merser" }]
keywords = ["agentic", "testops", "pytest", "debugging", "automation"]
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/Strangelight-Merser/agentic-testops"
Repository = "https://github.com/Strangelight-Merser/agentic-testops"
Issues = "https://github.com/Strangelight-Merser/agentic-testops/issues"
Changelog = "https://github.com/Strangelight-Merser/agentic-testops/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.4", "mypy>=1.10"]
[project.scripts]
agentic-testops = "agentic_testops.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
# Long lines are dominated by human-readable repair-advice strings; splitting
# them hurts grep-ability more than the length hurts readability.
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
files = ["src"]
strict = true
warn_unreachable = true