-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.39 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
[project]
name = "agentprobe"
version = "0.3.13"
description = "Test how well AI agents interact with CLI tools"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "nkkko", email = "nikola.balic@gmail.com" }
]
keywords = ["cli", "testing", "ai", "agents", "claude"]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Topic :: Software Development :: Testing",
"Topic :: System :: System Shells",
]
requires-python = ">=3.10"
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
"claude-code-sdk>=0.0.14",
"pyyaml>=6.0",
"anyio>=4.0.0",
"jinja2>=3.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"importlib_resources>=1.3.0; python_version<'3.9'",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.urls]
Homepage = "https://github.com/nkkko/agentprobe"
Documentation = "https://github.com/nkkko/agentprobe#readme"
Issues = "https://github.com/nkkko/agentprobe/issues"
[project.scripts]
agentprobe = "agentprobe.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"