26 lines
584 B
TOML
26 lines
584 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "spriteforge"
|
|
version = "0.1.0"
|
|
description = "Standalone deterministic 2D sprite asset pipeline"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["numpy>=1.26", "Pillow>=10", "pydantic>=2", "PyYAML>=6", "typer>=0.12"]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=8"]
|
|
|
|
[project.scripts]
|
|
sf = "spriteforge.cli:app"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"spriteforge.studio" = ["web/*.html"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|