1234567891011121314151617181920212223242526272829 |
- [build-system]
- requires = ["setuptools>=61.0"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "acme_updater_hoshpak"
- version = "0.1"
- authors = [
- { name="Helmut Pozimski", email="helmut@pozimski.eu" },
- ]
- description = "tool that takes care of automatically replacing Let's Encrypt SSL certificates"
- readme = "README.md"
- requires-python = ">=3.8"
- dependencies = [
- "pyOpenSSL",
- "dnspython"
- ]
- classifiers = [
- "Programming Language :: Python :: 3",
- "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
- "Operating System :: POSIX :: Linux",
- ]
- [project.urls]
- Homepage = "https://git.cyber-everything.de/Hoshpak/acme-updater"
- Issues = "https://git.cyber-everything.de/Hoshpak/acme-updater/issues"
- [project.scripts]
- acme-updater = "amulib.main:main"
|