-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (59 loc) · 1.32 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "randextract"
version = "0.1.0"
description = "A reference implementation for testing & validating Privacy Amplification algorithms"
authors = [
{name = "Esther Hänggi", email = "[email protected]"},
{name = "Iyán Méndez Veiga", email = "[email protected]"},
]
dependencies = [
"numpy>=1.25,<2.1",
"galois>=0.3.6",
"scipy>=1.12",
"gmpy2<3,>=2.2.0a1",
"termcolor>=2.4",
]
requires-python = ">=3.10, <3.13"
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://randextract.crypto-lab.ch"
Issues = "https://github.com/cryptolab/randextract/issues"
[project.optional-dependencies]
dev = [
"jupyterlab",
"matplotlib",
"black",
"twine",
"isort",
]
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.isort]
profile = "black"