chore: project scaffold (uv, .env.example, README, lyra package)

This commit is contained in:
Claude
2026-05-16 06:01:08 +00:00
parent faf4e8a1aa
commit b2523c2561
6 changed files with 192 additions and 49 deletions
+27
View File
@@ -0,0 +1,27 @@
[project]
name = "lyra"
version = "0.1.0"
description = "Persistent, autonomous AI assistant"
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["lyra"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]