This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
58 lines (50 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
55
56
57
58
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "agenticflow-cli"
version = "0.2.2"
description = "AgenticFlow CLI for agent-native API operations."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "AgenticFlow" }]
dependencies = [
"requests>=2.31.0,<3",
]
[project.urls]
Homepage = "https://github.com/PixelML/agenticflow-cli"
Repository = "https://github.com/PixelML/agenticflow-cli"
Issues = "https://github.com/PixelML/agenticflow-cli/issues"
[project.scripts]
agenticflow = "agenticflow_cli.main:main"
[project.optional-dependencies]
dev = [
"pytest>=8.3.0,<9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.hatch.build.targets.wheel]
packages = [
"src/agenticflow_cli",
"src/agenticflow_sdk",
]
[tool.hatch.build.targets.wheel.force-include]
"src/agenticflow_cli/openapi.json" = "agenticflow_cli/openapi.json"
"src/agenticflow_cli/public_ops_manifest.json" = "agenticflow_cli/public_ops_manifest.json"
[tool.hatch.build.targets.sdist]
include = [
"src/agenticflow_cli",
"src/agenticflow_sdk",
"scripts/agenticflow_cli.py",
"scripts/check_operation_id_mappings.py",
"scripts/minion_orchestrator.sh",
"scripts/minion_worker.sh",
"scripts/public_api_smoke_harness.py",
"scripts/release_readiness.sh",
"tests/unit",
"docs",
"openapi.json",
"README.md",
"LICENSE",
]