-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (32 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
32 lines (32 loc) · 776 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
[project]
name = "ml-fraud-detector"
version = "0.1.0"
description = "Sistema de Detecção de Fraude em Cartão de Crédito com ML"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
# Database
"sqlalchemy>=2.0.0",
"psycopg2-binary>=2.9.0",
# Data Science & ML
"pandas>=2.0.0",
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
# Visualization
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
# Web Framework
"flask>=3.0.0",
# Model Serialization
"joblib>=1.3.0",
"statsmodels>=0.14.5",
"tqdm>=4.67.1",
"xgboost>=3.0.5",
"flask-cors>=6.0.1",
"werkzeug>=3.1.3",
"flask-sqlalchemy>=3.1.1",
"gunicorn>=23.0.0",
"python-dotenv>=1.1.1",
"gevent>=25.9.1",
"python-dateutil>=2.9.0.post0",
]