-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
45 lines (41 loc) · 1.54 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
[build-system]
requires = ['setuptools>=62']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['mpyc']
[tool.setuptools.dynamic]
version = {attr = 'mpyc.__version__'}
[project]
name = 'mpyc'
dynamic = ['version']
authors = [{name = 'Berry Schoenmakers', email = '[email protected]'}]
description = 'MPyC for Multiparty Computation in Python'
readme = 'README.md'
keywords=['crypto', 'cryptography', 'multiparty computation', 'MPC',
'secret sharing', 'Shamir threshold scheme',
'pseudorandom secret sharing', 'PRSS']
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: AsyncIO',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing'
]
license = {text = 'MIT License'}
requires-python = '>=3.10'
[project.urls]
documentation = 'https://mpyc.readthedocs.io'
discussions = 'https://github.com/lschoe/mpyc/discussions'
'release notes' = 'https://github.com/lschoe/mpyc/releases'
homepage = 'https://www.win.tue.nl/~berry/mpyc/'
repository = 'https://github.com/lschoe/mpyc'