30 lines
992 B
TOML
30 lines
992 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 = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
Source = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater"
|
|
Documentation = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater/-/blob/main/README.md"
|
|
Changelog = "https://gitlab.com/CodeByMrFinchum/PyPiUpdater/-/blob/main/CHANGELOG.md"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/PyPiUpdater"]
|
|
|
|
[tool.hatch.version]
|
|
path = "src/PyPiUpdater/__init__.py"
|