hostsd/pyproject.toml
Kumi 5f429d73ea
feat: Initialize hostsd project with PyPI CI/CD
Introduced a comprehensive setup for `hostsd`, a simple hosts file manager, marking the project's inception. This entails crafting the PyPI CI/CD pipeline configuration, ensuring seamless publication processes on tag-based releases. Additionally, standard project necessities such as `.gitignore`, `LICENSE`, and `README.md` were put in place, alongside the core project configuration in `pyproject.toml`. The initial source code foundation is laid out in `src/hostsd`, featuring argument parsing and file management logic essential for hosts file manipulation.

The PyPI CI/CD configuration in `.forgejo/workflows/pypi.yml` facilitates automated publishing to PyPI upon tagging, backed by Docker to guarantee environment consistency. The project adopts a community-friendly stance with an MIT license, encouraging open collaboration. Documentation is immediately available via `README.md`, covering installation, usage, and automated update setups, ensuring users can effectively leverage `hostsd` from the get-go.

This setup underscores the project's commitment to enabling efficient hosts file management across various environments, laying the groundwork for future enhancements and community contributions.
2024-05-02 14:49:06 +02:00

27 lines
No EOL
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"