-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (94 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
105 lines (94 loc) · 2.48 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zebraops"
version = "0.1.1"
description = "Local-first, open-source MLOps platform for ML beginners and small teams."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [
{ name = "Jiri Knesl" },
]
keywords = [
"mlops",
"machine-learning",
"ml-platform",
"experiment-tracking",
"model-serving",
"data-pipeline",
"mlflow",
"prefect",
"local-first",
"reproducibility",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"fastapi>=0.116.0",
"uvicorn>=0.35.0",
"typer>=0.16.0",
"pydantic>=2.11.0",
"PyYAML>=6.0.2",
"sqlalchemy>=2.0.43",
"alembic>=1.16.0",
"mlflow>=2.22.0",
"prefect>=3.4.0",
"papermill>=2.6.0",
"pandas>=2.3.0",
"pyarrow>=21.0.0",
"prometheus-client>=0.23.0",
"evidently>=0.7.15",
"jinja2>=3.1.6",
"httpx>=0.28.0",
"scikit-learn>=1.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"pytest-cov>=6.2.0",
"ruff>=0.12.0",
"mypy>=1.17.0",
"types-PyYAML>=6.0.12.20250915",
]
[project.urls]
Homepage = "https://github.com/flexiana/zebraops"
Source = "https://github.com/flexiana/zebraops"
Documentation = "https://github.com/flexiana/zebraops/tree/main/docs"
Issues = "https://github.com/flexiana/zebraops/issues"
[project.scripts]
mlops = "zebraops.cli.main:app"
[tool.setuptools.packages.find]
include = ["zebraops*"]
[tool.setuptools.package-data]
"zebraops.templates" = ["**/*"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "S", "N"]
ignore = ["B018", "E501", "S101", "S104", "S301", "S603", "S607", "UP042"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_optional = true
ignore_missing_imports = true