-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 770 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 770 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
# ABOUTME: Python project configuration for tutorial example scripts and tests.
# ABOUTME: Manages dependencies for dataset generator, cost calculator, and test suite.
[project]
name = "cncf-mlops-tutorial"
version = "0.1.0"
description = "KubeCon Europe 2026 CNCF MLOps Pipeline Tutorial"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"pyarrow>=23.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
]