-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (56 loc) · 1.87 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "quey-random"
version = "1.0.3"
description = "Python SDK for Quey — true physical randomness from photonic shot noise. Raw entropy and Ed25519-signed verifiable draws, NIST-validated."
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Aaron Loeb", email = "contact@queyquantum.io" }
]
keywords = [
"randomness",
"verifiable-randomness",
"physical-entropy",
"trng",
"ed25519",
"nist",
"rejection-sampling",
"provable-fairness",
"cryptography",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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 :: Scientific/Engineering :: Physics",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.25.0",
]
[project.optional-dependencies]
numpy = ["numpy>=1.20.0"]
benchmarks = ["numpy>=1.20.0", "matplotlib>=3.3.0", "randcrack>=0.1.0"]
[project.urls]
Homepage = "https://queyquantum.io"
Documentation = "https://queyquantum.io/documentation"
Repository = "https://github.com/QueyQuantum/quey-random-python"
"Verify a Draw" = "https://queyquantum.io/verify/89421ffc-6af3-427e-8123-fa6c799cc166"
"NIST Validation" = "https://queyquantum.io/stats"
[tool.setuptools.packages.find]
include = ["quey_random*"]
exclude = ["benchmarks*"]