26 lines
524 B
TOML
26 lines
524 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "agentos"
|
|
version = "0.1.0"
|
|
description = "Single-node AgentOS runtime prototype"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { text = "Apache-2.0" }
|
|
dependencies = ["prompt-toolkit>=3.0,<4"]
|
|
|
|
[project.scripts]
|
|
agentos = "agentos.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/agentos"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|