-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 824 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
36
37
38
[tool.poetry]
name = "mltrail"
version = "0.1.0"
description = ""
authors = ["Victor Nacher"]
readme = "README.md"
packages = [
{include = "results", from="src"},
{include = "scraper", from="src"},
{include = "database", from="src"},
{include = "config", from="src"},
{include = "ai", from="src"}
]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7"
matplotlib = "^3.8.2"
numpy = "^1.26.4"
pandas = "^2.2.0"
lxml = "^5.1.0"
html5lib = "^1.1"
beautifulsoup4 = "^4.12.3"
pytest = "^8.0.0"
python-dotenv = "^1.0.1"
streamlit = ">= 1.33.0"
scikit-learn = "^1.5.1"
xgboost = "^2.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning:.*One or more of the test scores are non-finite.*"
]