-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 761 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (25 loc) · 761 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
[project]
name = "OpenFPL-Scout-AI"
version = "6.0.0"
description = "An AI-powered Fantasy Premier League Scout that uses Ridge, XGBoost, CatBoost, and MLP models to predict player points and optimize FPL team selection."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pandas>=2.0.3",
"numpy>=1.25.2",
"joblib>=1.3.1",
"pyyaml>=6.0",
"requests>=2.31.0",
"uvicorn>=0.22.0",
"fastapi>=0.103.1",
"pydantic>=2.6.2",
"python-dotenv>=1.0.0",
"aiofiles>=23.1.0",
]
[dependency-groups]
train = [
"scikit-learn>=1.3.0",
"xgboost-cpu==2.1.4; sys_platform == 'linux' and platform_machine == 'x86_64'",
"xgboost>=1.7.6; sys_platform != 'linux' or platform_machine != 'x86_64'",
"catboost>=1.2",
]