25 lines
380 B
TOML
25 lines
380 B
TOML
[project]
|
|
name = "rook"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"anthropic",
|
|
"elevenlabs",
|
|
"discord.py",
|
|
"imgui-bundle",
|
|
"openai",
|
|
"google-cloud-texttospeech",
|
|
]
|
|
|
|
[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"
|