feat: Initiate package

This commit is contained in:
Mr Finchum 2025-01-31 12:14:06 +01:00
parent 85fc80d778
commit 30ade13aae
12 changed files with 276 additions and 91 deletions

26
pyproject.toml Normal file
View file

@ -0,0 +1,26 @@
[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 = "pip_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"