-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"build",
"setuptools-rust>=1.5.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pqcdualusb"
version = "0.1.5"
description = "Post-Quantum Cryptography Dual USB Token Library for secure backup operations"
readme = "PYPI_README.md"
license = "MIT"
authors = [
{ name = "Johnson Ajibi", email = "ajibijohnson@jtnetsolutions.com" }
]
maintainers = [
{ name = "Johnson Ajibi", email = "ajibijohnson@jtnetsolutions.com" }
]
requires-python = ">=3.8"
keywords = ["cryptography", "post-quantum", "usb", "backup", "security", "token"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: System :: Archiving :: Backup",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"cryptography>=38.0.0",
"psutil>=5.9.0",
"argon2-cffi>=21.3.0",
]
[project.optional-dependencies]
pqc = [
"oqs>=0.5.0",
]
dev = [
"pytest>=6.0.0",
"pytest-cov>=2.12.0",
"black>=21.0.0",
"isort>=5.9.0",
"flake8>=3.9.0",
"mypy>=0.910",
]
benchmarks = [
"matplotlib>=3.5.0",
"numpy>=1.21.0",
]
[project.urls]
Homepage = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library"
Documentation = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library/blob/master/README.md"
Repository = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library.git"
"Bug Tracker" = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library/issues"
Changelog = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library/blob/master/CHANGELOG.md"
"Known Issues" = "https://github.com/Johnsonajibi/PostQuantum-DualUSB-Token-Library/blob/master/README.md#known-issues"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["pqcdualusb*"]
[tool.setuptools.package-data]
pqcdualusb = ["*.md", "*.txt", "*.rst", "*.so", "*.pyd", "*.dylib"]
[tool.setuptools-rust]
debug = false