Files
stills/pyproject.toml
Alexander Wainwright f2c39bd323 Add analytics and config
2025-04-13 18:42:19 +10:00

35 lines
690 B
TOML

[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stills"
version = "0.1.0"
description = ""
requires-python = ">=3.10"
dependencies = [
"Pillow>=10.0",
"pyexiv2>=2.15",
"toml>=0.10.2",
]
authors = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
maintainers = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
readme = "README.md"
license = {file = "LICENSE"}
[tool.setuptools]
packages = { find = { where = ["src"] } }
include-package-data = true
[tool.setuptools.package-data]
"stills" = ["templates/*.html", "templates/*.css"]
[project.scripts]
stills = "stills.main:main"