optima35/pyproject.toml

30 lines
761 B
TOML
Raw Normal View History

2025-01-03 12:43:02 +01:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "optima35"
dynamic = ["version"]
2025-01-03 12:43:02 +01:00
authors = [{ name = "Mr. Finchum" }]
description = "OPTIMA35 is a package to modify images with pillow and piexif."
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["piexif", "pillow"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
[project.urls]
Source = "https://gitlab.com/CodeByMrFinchum/optima35"
[project.scripts]
optima35 = "optima35.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/optima35"]
[tool.hatch.version]
path = "src/optima35/__init__.py"