[build-system] requires = ["setuptools>=69", "wheel"] build-backend = "setuptools.build_meta" [project] name = "ufo-mnist" version = "0.1.0" description = "Deterministic 28x28 grayscale toy benchmark for UFO-like shape classification." readme = "README.md" requires-python = ">=3.10" dependencies = [ "numpy>=1.24", "pillow>=10", ] [project.optional-dependencies] dev = ["pytest>=8", "scikit-learn>=1.4", "torch>=2"] [project.scripts] ufo-mnist = "ufo_mnist.cli:main" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["src", "."]