-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.04 KB
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
[tool.poetry]
name = "mlopscourse"
version = "0.2.0"
description = "A training repository to hone skills"
authors = ["Svyatoslav <pchelintsev.sv@phystech.edu>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/TopCoder2K/MLOpsCourse"
[tool.poetry.dependencies]
python = ">= 3.9, < 3.13"
numpy = "^1.26.0"
scikit-learn = "^1.3.1"
catboost = "^1.2.2"
fire = "^0.5.0"
hydra-core = "^1.3.2"
mlflow = "^2.8.1"
skl2onnx = "^1.16.0"
onnxruntime = "^1.16.3"
tritonclient = {extras = ["http"], version = "^2.41.0"}
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
dvc = {extras = ["gdrive"], version = "^3.27.0"}
[tool.black]
line-length = 90
target-version = ["py39"]
[tool.isort]
src_paths = ["mlopscourse"]
profile = "black"
line_length = 90
lines_after_imports = 2
[tool.nbqa.config]
black = "pyproject.toml"
isort = "pyproject.toml"
flake8 = "setup.cfg"
[tool.nbqa.addopts]
flake8 = ["--extend-ignore=E402"]
[tool.nbqa.mutate]
black = 1
isort = 1
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"