moai/pyproject.toml
Mikkel Georgsen 3740691dac feat(04-01): add openai dependency and AI config
- Add openai package to dependencies in pyproject.toml
- Extend BotConfig with ai_router, ai_api_key, ai_referer attributes
- Load AI settings from environment with sensible defaults

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 19:02:59 +00:00

40 lines
706 B
TOML

[project]
name = "moai"
version = "0.1.0"
description = "Multi-AI collaborative brainstorming platform"
requires-python = ">=3.11"
dependencies = [
"python-telegram-bot",
"python-dotenv",
"sqlalchemy",
"httpx",
"aiosqlite",
"openai",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"ruff",
"pre-commit",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.hatch.build.targets.wheel]
packages = ["src/moai"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"