-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 893 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 893 Bytes
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
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"
[project]
name = "pqf"
version = "0.1.0"
description = "Python bindings for the PQF (PostQuantum.FileFormat) Rust reader"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Paul Clark", email = "systemslibrarian@gmail.com" }
]
keywords = ["post-quantum", "cryptography", "file-format", "hybrid", "ml-kem", "ml-dsa"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Security :: Cryptography",
]
[project.urls]
Homepage = "https://github.com/systemslibrarian/PostQuantum.FileFormat"
Issues = "https://github.com/systemslibrarian/PostQuantum.FileFormat/issues"
[tool.maturin]
manifest-path = "Cargo.toml"
features = ["pyo3/extension-module"]
module-name = "pqf"