28 lines
621 B
TOML
28 lines
621 B
TOML
[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"]
|