codenuk_backend_mine/services/ai-analysis-service/pyproject.toml
2025-11-13 09:07:54 +05:30

33 lines
630 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-analysis-service"
version = "0.1.0"
description = "AI Analysis Microservice for Code Repository Analysis"
requires-python = ">=3.9"
dependencies = [
"fastapi>=0.104.1",
"uvicorn>=0.24.0",
"pydantic>=2.5.0",
"httpx>=0.25.0",
"redis>=4.5.0",
"psycopg2-binary>=2.9.7",
"neo4j>=5.8.0",
"anthropic>=0.7.0",
"python-dotenv>=1.0.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"mypy",
"black",
"isort"
]
[tool.setuptools]
packages = ["ai_analysis_service"]