-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 896 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 = "relife-financial"
version = "0.1.0"
description = "ReLIFE Financial Service"
readme = "README.md"
authors = [{ name = "ReLIFE Developer", email = "developers@re-life.eu" }]
requires-python = ">=3.11"
license = "EUPL-1.2"
dependencies = [
"cryptography==45.0.5",
"fastapi[standard]==0.116.1",
"httpx==0.28.1",
"pydantic-settings==2.10.1",
"rich==14.0.0",
"supabase==2.17.0",
"uvicorn==0.35.0",
"numpy==2.3.5",
"pandas==2.3.3",
"joblib>=1.3.0",
"lightgbm>=4.1.0",
"numpy-financial>=1.0.0",
"matplotlib>=3.7.0",
"scikit-learn==1.6.1",
]
[project.scripts]
run-service = "relife_financial:main"
validate-supabase = "relife_financial.scripts.validate_supabase:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["httpx>=0.28.1", "pytest>=8.4.1", "pytest-asyncio>=1.1.0"]