Initial commit

This commit is contained in:
emmettlu
2026-07-31 17:54:01 +08:00
commit fcc5d31137
27 changed files with 3565 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
[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"]