Files
emulsion/pyproject.toml
Alexander Wainwright 38ca9cb817 Initial commit
2025-04-05 09:14:34 +10:00

30 lines
577 B
TOML

[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emulsion"
version = "0.1.0"
description = "A tool for updating exif tags"
requires-python = ">=3.10"
dependencies = [
"toml",
"alive-progress",
]
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"]
[project.scripts]
emulsion = "emulsion.main:main"