-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (20 loc) · 607 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (20 loc) · 607 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ag-client"
version = "0.1.0"
description = "Official Python client for Aegis — orchestration middleware for Claude Code"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
dependencies = ["pydantic>=2.0"]
[project.optional-dependencies]
dev = ["black", "datamodel-code-generator[http]>=0.56", "isort", "pytest", "ruff"]
[tool.hatch.build.targets.wheel]
packages = ["src/aegis_python_client"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]