amayer5125 is savage

This commit is contained in:
Frank Schwenk
2026-05-30 11:33:07 +02:00
commit e7cdb8dd6f
55 changed files with 4339 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "imagepipeline"
version = "0.1.0"
description = "Modular image processing pipeline framework"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Frank" }]
dependencies = []
[project.optional-dependencies]
ai = ["numpy>=1.26", "Pillow>=10.0", "torch>=2.0"]
dev = ["pytest>=8.0"]
[project.scripts]
imagepipeline = "imagepipeline.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["imagepipeline*"]
[tool.pytest.ini_options]
testpaths = ["tests"]