Some checks failed
CI/CD - Build & Test / Backend Tests (push) Has been cancelled
CI/CD - Build & Test / Frontend Tests (push) Has been cancelled
CI/CD - Build & Test / Security Scans (push) Has been cancelled
CI/CD - Build & Test / Docker Build Test (push) Has been cancelled
CI/CD - Build & Test / Terraform Validate (push) Has been cancelled
Deploy to Production / Build & Test (push) Has been cancelled
Deploy to Production / Security Scan (push) Has been cancelled
Deploy to Production / Build Docker Images (push) Has been cancelled
Deploy to Production / Deploy to Staging (push) Has been cancelled
Deploy to Production / E2E Tests (push) Has been cancelled
Deploy to Production / Deploy to Production (push) Has been cancelled
Add missing opentelemetry-exporter-jaeger package required by tracing module. This completes the Docker dependency fixes.
43 lines
1001 B
TOML
43 lines
1001 B
TOML
[project]
|
|
name = "mockup-aws"
|
|
version = "0.1.0"
|
|
description = "Simulatore locale del backend AWS per LogWhispererAI."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
|
|
dependencies = [
|
|
"alembic>=1.18.4",
|
|
"asyncpg>=0.31.0",
|
|
"fastapi>=0.110.0",
|
|
"pydantic>=2.7.0",
|
|
"pydantic-settings>=2.13.1",
|
|
"tiktoken>=0.6.0",
|
|
"uvicorn>=0.29.0",
|
|
"reportlab>=4.0.0",
|
|
"pandas>=2.0.0",
|
|
"slowapi>=0.1.9",
|
|
"bcrypt>=4.0.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"email-validator>=2.0.0",
|
|
"redis>=5.0.0",
|
|
"celery>=5.4.0",
|
|
"prometheus-client>=0.20.0",
|
|
"opentelemetry-api>=1.24.0",
|
|
"opentelemetry-sdk>=1.24.0",
|
|
"opentelemetry-instrumentation-fastapi>=0.45b0",
|
|
"opentelemetry-exporter-otlp>=1.24.0",
|
|
"opentelemetry-exporter-jaeger>=1.21.0",
|
|
"python-json-logger>=2.0.7",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"httpx>=0.27.0",
|
|
"pytest>=8.1.1",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|