-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 851 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (33 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "hr-pulse-backend"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.111.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy>=2.0.0",
"pyodbc>=5.0.0",
"pydantic-settings>=2.0.0",
"azure-ai-textanalytics>=5.3.0",
"opentelemetry-sdk>=1.24.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.24.0",
"opentelemetry-instrumentation-fastapi>=0.45b0",
"opentelemetry-instrumentation-sqlalchemy>=0.45b0",
"pandas>=2.0.0",
"scikit-learn>=1.4.0",
"python-jose[cryptography]>=3.5.0",
"passlib[bcrypt]==1.7.4",
"bcrypt==4.0.1",
"python-dotenv==1.0.0",
"pydantic[email]>=2.12.5",
"pytest>=9.0.2",
"ruff>=0.15.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"httpx>=0.27.0",
"ruff>=0.4.0",
]
[tool.ruff]
line-length = 88