-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.93 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hsm-orchestrator"
version = "1.2.0"
description = "Orchestration tool for Mozilla's offline HSM which facilitates conveying a CSR to the air gapped HSM server"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" }
keywords = ["hsm"]
authors = [{ name = "Gene Wood", email = "gene@mozilla.com" }]
maintainers = [
{ name = "Mozilla Infrastructure Security", email = "security@mozilla.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"click~=8.3.0",
"rich~=14.1.0",
"platformdirs~=4.4.0",
"GitPython~=3.1.45",
"psutil~=7.1.0",
"configobj~=5.0.9",
]
[project.optional-dependencies]
test = [
"coverage~=7.10.6",
"pytest~=8.4.2",
"pytest-datafiles~=3.0.0",
"click~=8.3.0"
]
[project.urls]
"Homepage" = "https://github.com/mozilla/hsm-orchestrator"
"Bug Reports" = "https://github.com/mozilla/hsm-orchestrator/issues"
"Funding" = "https://donate.mozilla.org"
"Say Thanks!" = "https://saythanks.io/to/gene1wood"
"Source" = "https://github.com/mozilla/hsm-orchestrator"
[project.scripts]
hsm-orchestrator = "hsm_orchestrator:main"
[tool.pytest.ini_options]
minversion = "8.4.2"
# addopts = "--capture=no --log-cli-level=10"
addopts = "--capture=no"
testpaths = [
"tests"
]
[tool.black]
preview = true
unstable = true