-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.03 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
[tool.poetry]
name = "ml-orchestrator"
version = "0.1.0"
description = "kubeflow extension"
authors = ["DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "ml_orchestrator", from = "." },
]
[tool.poetry.dependencies]
python = ">=3.9,<=3.13"
kfp = { version = ">=2.7.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = ">=7.1.2"
hypothesis = ">=6.23.3"
pre-commit = ">=2.20.0"
pytest-cov = ">=4.0.0"
mypy = ">=0.991"
ruff = ">=0.3.1"
kfp = ">=2.7.0"
[tool.poetry.extras]
editor = ["kfp"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
include = ["pyproject.toml", "tests/**", "ml_orchestrator/**", ]
[tool.ruff.lint]
select = ["F", "B", "I", "F", "W", "E", "A", "N"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_optional = false