-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.44 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
[build-system]
requires = ["setuptools >= 61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "randextract"
version = "0.2.2"
description = "A reference implementation for testing & validating Privacy Amplification algorithms"
authors = [
{name = "Esther Hänggi", email = "esther.haenggi@hslu.ch"},
{name = "Iyán Méndez Veiga", email = "iyan.mendezveiga@hslu.ch"},
]
dependencies = [
"numpy >= 1.21.0",
"galois >= 0.3.6",
"scipy >= 1.12",
"gmpy2 >=2.2.0a1, <3",
"termcolor >= 2.4",
]
requires-python = ">=3.10, <3.14"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
keywords = ["Quantum Cryptography", "Randomness Extractor", "Privacy Amplification"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://randextract.crypto-lab.ch"
Issues = "https://github.com/cryptolab/randextract/issues"
[project.optional-dependencies]
dev = [
"black",
"build",
"isort",
"jupyterlab",
"matplotlib",
"twine",
]
docs = [
"Sphinx",
"sphinx-book-theme",
"sphinxcontrib-bibtex",
"sphinx-togglebutton",
"sphinx-tabs",
"sphinx-autodoc-typehints",
]
examples = [
"pyzmq",
]
test = [
"pytest",
"pytest-cov",
]
all = ["randextract[dev,docs,examples,test]"]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120