[project] name = "digital-employee-platform" version = "0.1.0" description = "Multi-tenant digital employee platform with RAG knowledge base" requires-python = ">=3.11" dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.30.0", "sqlalchemy[asyncio]>=2.0.0", "aiosqlite>=0.20.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "httpx>=0.27.0", "cryptography>=43.0.0", "openai>=1.40.0", "chromadb>=0.5.0", "pypdf2>=3.0.0", "python-docx>=1.1.0", "python-multipart>=0.0.9", "sse-starlette>=2.0.0", ] [dependency-groups] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.24.0", "ruff>=0.6.0", "mypy>=1.11.0", ] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] target-version = "py311" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] [tool.mypy] python_version = "3.11" strict = true