update-applications/pyproject.toml
2024-06-07 12:55:03 +02:00

39 lines
1018 B
TOML

[project]
name = "update-applications"
dependencies = [
"toml~=0.10.2",
"rich~=13.7.1",
]
dynamic = ["version"]
authors = []
description = "If an application like hopscotch is not found in repositories, you can use this to still keep it updated, by either adding a download link for the newest version or a git repository with releases."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
update-applications = "update_applications.__main__:cli"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.build]
directory = "dist"
[tool.hatch.build.targets.sdist]
include = ["update_applications/*.py"]
[tool.hatch.build.targets.wheel]
packages = ["update_applications"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "update_applications/__about__.py"