Kumi
29992af943
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 37s
Upgraded hostsd to version 0.1.2, introducing logic to skip over directories that are either hidden (start with a '.') or intentionally disabled (end with '.disabled') during the directory reading process. This exclusion strategy enhances the performance by reducing unnecessary processing and aligns with common practices to temporarily disable directories without removing them. This update ensures a cleaner and more efficient directory scanning, particularly in environments where such control directories are prevalent.
27 lines
No EOL
698 B
TOML
27 lines
No EOL
698 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "hostsd"
|
|
version = "0.1.2"
|
|
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" |