-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (60 loc) · 2.18 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
70
71
[build-system]
requires = ["setuptools>=69.0.0,<76", "wheel>=0.42,<1"]
build-backend = "setuptools.build_meta"
[project]
name = "hybrid-pki-lab"
version = "1.0.0"
description = "Educational classical and post-quantum hybrid PKI research prototype"
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = { text = "MIT" }
authors = [{ name = "Dr. Chokri NOUAR" }]
keywords = ["pki", "cryptography", "cybersecurity", "pqc", "x509", "ml-kem", "ml-dsa", "hybrid-pki"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Security :: Cryptography",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cryptography>=50.0.1,<51", "pyOpenSSL>=26.0.0,<27", "fastapi>=0.110,<1",
"uvicorn[standard]>=0.27,<1", "pydantic>=2.6,<3", "httpx>=0.27,<1",
"typer>=0.9,<1", "rich>=13.7,<15", "python-dotenv>=1.0,<2", "orjson>=3.9,<4",
]
[project.urls]
Repository = "https://github.com/chokripto/Hybrid-PKI-Lab-Classical-and-Post-Quantum-PKI-in-Python"
Issues = "https://github.com/chokripto/Hybrid-PKI-Lab-Classical-and-Post-Quantum-PKI-in-Python/issues"
[project.optional-dependencies]
pqc = ["liboqs-python>=0.10,<0.13"]
dev = ["pytest>=9.0.3,<10", "pytest-cov>=4,<8", "black>=26.3.1,<27", "ruff>=0.3,<1", "mypy>=1.8,<2", "bandit>=1.7.7,<2", "pip-audit>=2.7,<3", "pre-commit>=3.6,<5"]
docs = ["mkdocs>=1.5,<2", "mkdocs-material>=9.5,<10"]
benchmark = ["pandas>=2.2,<3", "matplotlib>=3.8,<4"]
[project.scripts]
hybrid-pki = "hybrid_pki.cli:app"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py311", "py312"]
[tool.ruff]
line-length = 88
target-version = "py311"
src = ["src", "tests", "examples", "benchmarks"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "N", "S"]
ignore = ["S101"]
[tool.mypy]
python_version = "3.11"
warn_unused_configs = true
warn_return_any = true
warn_unused_ignores = true
ignore_missing_imports = true
mypy_path = "src"
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
addopts = "-v --cov=hybrid_pki --cov-report=term-missing"