- H1: quote slug in revoke_token - H2: redact AppToken.token in repr/str - M1-M6: wrap stdlib exceptions in ForgeError, validate timeouts, document uploads - L1/L5/L7: type-strict, immutable ip_cidrs, validate ok field - Bump requests floor to 2.32 Audit: memory/clawdforge-audits/python-90e158f.md
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "clawdforge"
|
|
version = "0.1.0"
|
|
description = "Python SDK for the clawdforge LAN-only HTTP service (claude -p subprocess wrapper)."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
authors = [{ name = "Kayos", email = "kayos@sulkta.com" }]
|
|
keywords = ["clawdforge", "claude", "sulkta", "sdk"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
dependencies = [
|
|
"requests>=2.32",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"responses>=0.23",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "http://192.168.0.5:3001/Sulkta-Coop/clawdforge"
|
|
Source = "http://192.168.0.5:3001/Sulkta-Coop/clawdforge"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/clawdforge"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"src/clawdforge",
|
|
"README.md",
|
|
"pyproject.toml",
|
|
]
|