-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (95 loc) · 2.85 KB
/
pyproject.toml
File metadata and controls
112 lines (95 loc) · 2.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "gaiaflow"
requires-python = ">= 3.11"
version = "0.0.4dev0"
description = "Local-first MLOps infrastructure python tool that simplifies the process of building, testing, and deploying ML workflows."
authors = [{name = "Yogesh Kumar Baljeet Singh", email = "yogesh.baljeetsingh@brockmann-consult.de"}]
dependencies = [
"typer>=0.16.0,<0.17",
"fsspec>=2025.7.0,<2026",
"ruamel.yaml>=0.18.14,<0.19",
"psutil>=7.0.0,<8",
"pyyaml>=6.0.2,<7",
"apache-airflow>=3.0.3,<4",
"apache-airflow-providers-cncf-kubernetes>=10.6.2,<11",
"apache-airflow-providers-amazon>=9.11.0,<10",
"apache-airflow-providers-fab>=2.3.1,<3",
"apache-airflow-providers-docker>=4.4.2,<5",
"mlflow>=3.2.0,<4",
"jupyter>=1.1.1,<2",
]
readme= "README.md"
[project.urls]
Documentation = "https://bcdev.github.io/gaiaflow/"
Repository = "https://github.com/bcdev/gaiaflow"
Issues = "https://github.com/bcdev/gaiaflow/issues"
Changelog = "https://github.com/bcdev/gaiaflow/blob/main/CHANGES.md"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["src/gaiaflow", "src/docker_stuff"]
[tool.hatch.build]
include = [
"src/gaiaflow",
"src/docker_stuff",
]
[tool.mypy]
python_version = "3.12"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
gaiaflow = { path = ".", editable = true }
# Dev tools
isort = "*"
mypy = "*"
pytest = "*"
ruff = "*"
[tool.pixi.tasks]
test = "pytest tests"
format = "isort src/gaiaflow && ruff format src/gaiaflow"
check = "ruff check src/gaiaflow"
check_fix = "ruff check src/gaiaflow --fix"
typecheck = "PYTHONPATH=./src mypy -p gaiaflow"
[tool.pixi.dependencies]
typer = ">=0.16.0,<0.17"
fsspec = ">=2025.7.0,<2026"
pixi-pycharm = ">=0.0.8,<0.0.9"
"ruamel.yaml" = ">=0.18.14,<0.19"
psutil = ">=7.0.0,<8"
pyyaml = ">=6.0.2,<7"
apache-airflow = ">=3.0.3,<4"
apache-airflow-providers-cncf-kubernetes = ">=10.6.2,<11"
apache-airflow-providers-amazon = ">=9.11.0,<10"
apache-airflow-providers-fab = ">=2.3.1,<3"
apache-airflow-providers-docker = ">=4.4.2,<5"
mlflow = ">=3.2.0,<4"
mkdocs = ">=1.6.1,<2"
mkdocs-material = ">=9.6.17,<10"
mkdocstrings = ">=0.30.0,<0.31"
mkdocstrings-python = ">=1.17.0,<2"
pytest-cov = ">=6.2.1,<7"
jupyter = ">=1.1.1,<2"
pymdown-extensions = ">=10.16.1,<11"
[project.scripts]
gaiaflow = "gaiaflow.cli.cli:app"
[[tool.mypy.overrides]]
module = "kubernetes.client.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "fsspec.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "psutil.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "yaml.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "docker.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["gaiaflow.*"]
follow_untyped_imports = true
ignore_missing_imports = true