optima35/pyproject.toml

35 lines
1 KiB
TOML
Raw Permalink 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" }]
2025-01-21 19:05:48 +00:00
description = "optima35 is a package to modify images, using pillow and piexif."
readme = "pip_README.md"
2025-03-24 15:24:14 +01:00
requires-python = ">=3.8, <4.0"
2025-01-03 12:43:02 +01:00
dependencies = ["piexif", "pillow"]
classifiers = [
2025-02-09 13:21:29 +01:00
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
2025-01-03 12:43:02 +01:00
"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"
2025-02-09 13:21:29 +01:00
Documentation = "https://gitlab.com/CodeByMrFinchum/optima35/-/blob/main/README.md"
Changelog = "https://gitlab.com/CodeByMrFinchum/optima35/-/blob/main/CHANGELOG.md"
[project.scripts]
optima35 = "optima35.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/optima35"]
[tool.hatch.version]
path = "src/optima35/__init__.py"