feat(scaffold): initialize rook package with pyproject.toml, src layout, and uv setup

This commit is contained in:
2026-03-01 21:37:57 -05:00
parent 84e34681fc
commit 6399359653
6 changed files with 873 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "rook"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"anthropic",
"elevenlabs",
"python-telegram-bot",
"dearpygui",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.24.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"