-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (55 loc) · 1.54 KB
/
setup.cfg
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
[metadata]
name = tno.mpc.mpyc.matrix_inverse
author = TNO MPC Lab
author_email = mpclab@tno.nl
maintainer = TNO MPC Lab
maintainer_email = mpclab@tno.nl
description = A generic extension to MPyC that allows you to securely compute the inverse of a matrix that may contain SecFxp values
classifiers =
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Operating System :: OS Independent
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Typing :: Typed
Topic :: Security :: Cryptography
license = Apache License, Version 2.0
license_file = LICENSE
platform = any
python_requires = >=3.7
keywords =
TNO
MPC
multi-party computation
MPyC
matrix_inverse
url = https://mpc.tno.nl/
download_url = https://pypi.org/project/tno.mpc.mpyc.matrix_inverse/#files
project_urls =
Documentation = https://docs.mpc.tno.nl/mpyc/matrix_inverse/0.4.3
Source Code = https://github.com/TNO-MPC/mpyc.matrix_inverse
version = attr: tno.mpc.mpyc.matrix_inverse.__version__
long_description_content_type = text/markdown
long_description = file: README.md
[options]
packages =
tno.mpc.mpyc.matrix_inverse
tno.mpc.mpyc.matrix_inverse.test
zip_safe = False
install_requires =
mpyc~=0.7.0
numpy
tno.mpc.mpyc.stubs>=0.2.0
namespace_packages =
tno
tno.mpc
tno.mpc.mpyc
[options.package_data]
tno.mpc.mpyc.matrix_inverse = py.typed
[options.extras_require]
gmpy =
gmpy2>=2.1.0
tests =
pytest
pytest-asyncio