-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 950 Bytes
/
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
[project]
name = "status"
version = "0.0.1"
dynamic = ["dependencies"]
authors = [
{ name="David Stainton", email="[email protected]" },
]
description = "A status html page generator for katzenpost mix networks"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
]
[project.urls]
Homepage = "https://github.com/katzenpost/status"
Issues = "https://github.com/katzenpost/status/issues"
[project.scripts]
status = "status.main:main"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]