[project] name = "strat-chatbot" version = "0.1.0" description = "Strat-O-Matic rules Q&A chatbot" requires-python = ">=3.11" dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.30.0", "discord.py>=2.5.0", "chromadb>=0.5.0", "sentence-transformers>=3.0.0", "python-dotenv>=1.0.0", "sqlalchemy>=2.0.0", "aiosqlite>=0.19.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "httpx>=0.27.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", "black>=24.0.0", "ruff>=0.5.0", ] [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["domain", "adapters", "config"] [tool.black] line-length = 88 target-version = ['py311'] [tool.ruff] line-length = 88 select = ["E", "F", "B", "I"] target-version = "py311" [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]