-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "tlsod-authorize"
version = "0.5.0"
description = "A small tool to authorize the provisioning of TLS on demand against an inventory of domain names"
authors = ["Darknet ehf <info@labs.darknet.com>"]
maintainers = ["Darknet ehf <info@labs.darknet.com>"]
homepage = "https://github.com/darknetehf/tlsod_authorize"
documentation = "https://github.com/darknetehf/tlsod_authorize"
repository = "https://github.com/darknetehf/tlsod_authorize"
keywords = ["TLS", "caddy"]
classifiers = [
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: Site Management"
]
license = "MIT"
readme = "README.rst"
packages = [{include = "tlsod_authorize", from = "src"}]
[tool.poetry.scripts]
tlsod-authorize = "tlsod_authorize.cli:main"
[tool.poetry.dependencies]
python = "^3.11"
pip = "^24.2"
pyyaml = "^6.0.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
bump2version = "^1.0.1"
codetiming = "^1.4.0"
pytest = "^8.3.4"
requests = "^2.32.3"
pytest-randomly = "^3.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"