-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 944 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
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agr"
version = "0.8.1"
description = "Agent Resources - The package manager for AI agents. Built for teams."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"httpx>=0.27",
"typer>=0.12",
"rich>=13.0",
"tomlkit>=0.12",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
"ruff>=0.6",
"respx>=0.21",
"ty>=0.0.14",
"mkdocs-material>=9.0",
]
[project.scripts]
agr = "agr.main:app"
agrx = "agrx.main:app"
[tool.hatch.build.targets.wheel]
packages = ["agr", "agrx"]
[tool.pytest.ini_options]
markers = [
"e2e: end-to-end tests requiring network (skip with '-m \"not e2e\"')",
"network: tests that make real network requests",
"slow: tests taking > 5 seconds",
"requires_cli(name): skip test if CLI tool is not installed",
]