-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
63 lines (59 loc) · 1.14 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
[project]
name = "oblivious"
version = "7.0.0"
description = """\
Python library that serves as an API for common \
cryptographic primitives used to implement OPRF, OT, \
and PSI protocols.\
"""
license = {text = "MIT"}
authors = [
{name = "Nth Party"},
{email = "[email protected]"}
]
readme = "README.rst"
requires-python = ">=3.7"
dependencies = [
"parts~=1.6",
"fe25519~=1.4",
"ge25519~=1.4",
"bn254~=0.1"
]
[project.urls]
Repository = "https://github.com/nthparty/oblivious"
Documentation = "https://oblivious.readthedocs.io"
[project.optional-dependencies]
rbcl = [
"rbcl~=1.0"
]
mclbn256 = [
"mclbn256~=1.3"
]
docs = [
"toml~=0.10.2",
"sphinx~=4.2.0",
"sphinx-rtd-theme~=1.0.0"
]
test = [
"pytest~=7.2",
"pytest-cov~=4.0",
"bitlist~=1.1",
"fountains~=2.1"
]
lint = [
"pylint~=2.17.0"
]
coveralls = [
"coveralls~=3.3.1"
]
publish = [
"build~=0.10",
"twine~=4.0"
]
[build-system]
requires = [
"setuptools~=67.6"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=oblivious --cov-report term-missing"