PyPiUpdater/pyproject.toml
Mr Finchum 282a2145ff feat: reworking strukture
This is a breaking change. A reminder that this is in very early stage (first day) and nothing is set in stone yet.
2025-01-31 14:59:09 +00:00

26 lines
712 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyPiUpdater"
dynamic = ["version"]
authors = [{ name = "Mr Finchum" }]
description = "Simple program to update package from PyPi with pip."
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["requests", "packaging"]
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/PyPiUpdater"
[tool.hatch.build.targets.wheel]
packages = ["src/PyPiUpdater"]
[tool.hatch.version]
path = "src/PyPiUpdater/__init__.py"