forked from svpino/ml.school
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.38 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "mlschool"
version = "0.1.0"
description = "Building Machine Learning Systems"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"awscurl>=0.36",
"evidently>=0.5.0",
"geventhttpclient>=2.3.3",
"ipykernel>=6.29.5",
"jupyter>=1.1.1",
"keras==3.8.0",
"metaflow>=2.13",
"metaflow-card-html>=1.0.2",
"mlflow[extras]==2.20.2",
"mlserver>=1.6.1",
"mlserver-mlflow>=1.6.1",
"numpy>=1.26.4",
"pandas>=2.2.3",
"pylint>=3.3.2",
"pytest>=8.3.4",
"scikit-learn==1.6.1",
"tensorflow==2.18.0",
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py310"
extend-include = ["*.ipynb"]
extend-select = ["I"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ANN001", "ANN101", "ANN201", "ANN202", "B006", "BLE001", "E402", "PD901", "PLR0913", "S101", "S311", "T201"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"**/tests/*.py" = ["D103"]
[tool.pyright]
venvPath = "./../."
venv = ".venv"
typeCheckingMode = "off"
[tool.pyright.diagnosticSeverityOverrides]
reportCallIssue = "off"
[tool.pytest.ini_options]
pythonpath="pipelines"
addopts="--maxfail=2 -rf -W ignore::DeprecationWarning"
markers = [
"integration: marks integration tests (deselect with '-m \"not integration\"')"
]