-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 930 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 930 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agentic-fleet"
version = "0.1.0"
description = "Decoupled Autonomous GitHub-Native Multi-Agent SDLC Orchestrator"
readme = "README.md"
authors = [{ name = "Dipesh Singh", email = "dipesh.singh2012@gmail.com" }]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.2.0",
"pyyaml>=6.0.1",
"google-genai>=0.1.1",
"python-dotenv>=1.0.1",
"rich>=13.7.0",
"typer>=0.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.1.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.14.0",
"pre-commit>=3.6.0",
]
[project.scripts]
agentic-fleet = "src.cli:app"
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q --import-mode=importlib"
testpaths = ["tests"]
pythonpath = ["."]
asyncio_mode = "auto"