Initial commit

This commit is contained in:
Alexander Wainwright
2025-04-05 09:14:34 +10:00
commit 38ca9cb817
9 changed files with 1044 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[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"