-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 878 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (27 loc) · 878 Bytes
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
[project]
dynamic = ["version", "dependencies"]
name = "certbot-standalone-nfq"
description = "Certbot HTTP authenticator that works with any web server."
readme = "README.md"
authors = [{name = "Alex Zorin", email = "alex@zorin.au"}]
requires-python = ">=3.8"
license = { text = "GPL-2.0" }
[project.urls]
repository = "https://github.com/alexzorin/certbot-standalone-nfq"
[project.entry-points."certbot.plugins"]
standalone-nfq = "certbot_standalone_nfq.auth:Authenticator"
[tool.setuptools]
packages = ["certbot_standalone_nfq"]
[tool.setuptools.dynamic]
version = {attr = "certbot_standalone_nfq._version.__version__"}
[tool.setuptools_scm]
write_to = "certbot_standalone_nfq/_version.py"
[tool.black]
line-length = 100
target-version = ['py38']
[build-system]
requires = [
"setuptools >= 40.9.0",
"setuptools-scm>=7.0.5"
]
build-backend = "setuptools.build_meta"