-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (38 loc) · 920 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "ml-with-sklearn"
version = "0.0.1"
description = "A live course on using scikit-learn for machine learning"
authors = [
"Nayat Sanchez-Pi <name.lastname@inria.cl>",
"Luis Martí <name.lastname@inria.cl>",
]
package-mode = false
[tool.poetry.dependencies]
python = "^3.8,<3.12"
scikit-learn = "^1.2.2"
notebook = "*"
ipykernel = "*"
ipywidgets = "*"
pandas = "^2.0.1"
seaborn = "^0.12.2"
tqdm = "^4.65.0"
rise = "^5.7.1"
deap = "^1.3.3"
[tool.poetry.group.dev.dependencies]
black = { extras = ["jupyter"], version = "^23.3.0" }
flake8 = "^3.8.3"
bandit = "1.6.2"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
nbmake = "^1.4.1"
pytest-xdist = "^3.3.1"
[tool.black]
line-length = 127
[tool.pytest.ini_options]
addopts = "--doctest-modules"
junit_family = "xunit2"
log_cli = true
log_cli_level = "INFO"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"