[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"