30 lines
577 B
TOML
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"
|