File size: 976 Bytes
28c1a1b
 
 
 
 
 
92a1fd3
28c1a1b
 
 
9d9324f
28c1a1b
4f751c9
 
 
 
 
 
 
 
3b97d72
 
 
 
 
 
28c1a1b
 
2a3c0e5
 
747ec2f
2a3c0e5
28c1a1b
 
 
1f8244a
 
 
 
 
 
747ec2f
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "deploy-machine-learning"
version = "0.1.0"
description = ""
authors = ["marintosti12 <marintosti12@gmail.com>"]
readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.116.1"}
uvicorn = "^0.35.0"
pandas = "^2.3.2"
matplotlib = "^3.10.6"
seaborn = "^0.13.2"
joblib = "^1.5.2"
scipy = "^1.16.1"
scikit-learn = "^1.7.2"
imbalanced-learn = "^0.14.0"
shap = "^0.48.0"
sqlalchemy = {extras = ["asyncio"], version = "^2.0.43"}
huggingface-hub = "^0.34.4"
alembic = "^1.16.5"
asyncpg = "^0.30.0"
psycopg2-binary = "^2.9.10"
pydantic-settings = "^2.10.1"


[tool.poetry.group.dev.dependencies]
ruff = "^0.12.12"
pytest = "^8.4.2"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.ruff]
target-version = "py312"
line-length = 100
extend-exclude = [
  "notebook/*.ipynb", 
]

[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]