1f5a32185c
README was a pre-MVP stub (wrong, said set an Anthropic key). Now documents the real system: two-layer architecture, role-based backends, memory tiers + dream cycle, poker copilot (sessions/hands/villains/equity/recaps), web pages, ratings, and how to run it as services. Added CHANGELOG with the 0.2.0 feature set. Legacy v0.6.x design docs kept in docs/ as history. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
47 lines
948 B
TOML
47 lines
948 B
TOML
[project]
|
|
name = "lyra"
|
|
version = "0.2.0"
|
|
description = "Persistent, autonomous AI assistant"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"httpx>=0.28.1",
|
|
"numpy>=2.4.5",
|
|
"openai>=2.37.0",
|
|
"python-dotenv>=1.2.2",
|
|
"treys>=0.1.8",
|
|
"uvicorn[standard]>=0.34",
|
|
]
|
|
|
|
[project.scripts]
|
|
lyra = "lyra.__main__:main"
|
|
lyra-web = "lyra.web.server:serve"
|
|
lyra-import = "lyra.ingest:main"
|
|
lyra-summarize = "lyra.summary:main"
|
|
lyra-profile = "lyra.profile:main"
|
|
lyra-era = "lyra.era:main"
|
|
lyra-narrative = "lyra.narrative:main"
|
|
lyra-reflect = "lyra.self_state:main"
|
|
lyra-dream = "lyra.dream:main"
|
|
|
|
[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"]
|