2024-06-07 10:23:37 +00:00
[ project ]
name = "update-applications"
2024-06-07 10:55:03 +00:00
dependencies = [
"toml~=0.10.2" ,
"rich~=13.7.1" ,
]
2024-06-07 10:23:37 +00:00
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"