-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.86 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quantumvalidator"
version = "0.5.2"
description = "Quantum-safe cryptography validator — TLS, STARTTLS, and SSH post-quantum readiness assessment"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
"cybersecurity",
"security-audit",
"quantum",
"post-quantum",
"pqc",
"tls",
"smtp",
"mlkem",
"cnsa",
"cli",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"rich>=13.7",
"typer>=0.12",
]
[project.urls]
Homepage = "https://github.com/NC3-TestingPlatform/quantumvalidator"
Repository = "https://github.com/NC3-TestingPlatform/quantumvalidator"
Issues = "https://github.com/NC3-TestingPlatform/quantumvalidator/issues"
Changelog = "https://github.com/NC3-TestingPlatform/quantumvalidator/blob/main/CHANGELOG.md"
[project.scripts]
quantumvalidator = "quantumvalidator.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["quantumvalidator*"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "pytest-mock>=3.12"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--cov=quantumvalidator --cov-report=term-missing"