27 lines
698 B
TOML
27 lines
698 B
TOML
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "hostsd"
|
||
|
version = "0.1.0"
|
||
|
authors = [
|
||
|
{ name="Kumi Mitterer", email="hostsd@kumi.email" },
|
||
|
]
|
||
|
description = "A simple hosts file manager"
|
||
|
readme = "README.md"
|
||
|
license = { file="LICENSE" }
|
||
|
requires-python = ">=3.8"
|
||
|
classifiers = [
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
]
|
||
|
|
||
|
[project.scripts]
|
||
|
hostsd = "hostsd.__main__:main"
|
||
|
|
||
|
[project.urls]
|
||
|
"Homepage" = "https://git.private.coffee/kumi/hostsd"
|
||
|
"Bug Tracker" = "https://git.private.coffee/kumi/hostsd/issues"
|
||
|
"Source Code" = "https://git.private.coffee/kumi/hostsd"
|