forked from lschoe/mpyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 927 Bytes
/
setup.py
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
# MPyC setup script.
#
# Options: python setup.py --help
# Install by admin/root: python setup.py install
# Install by user: python setup.py install --user
# Install options: python setup.py install --help
import setuptools
import mpyc
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(name='mpyc',
version=mpyc.__version__,
author='Berry Schoenmakers',
author_email='[email protected]',
description='A framework for secure multiparty computation.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['crypto', 'cryptography', 'multiparty computation', 'MPC',
'secret sharing', 'Shamir threshold scheme',
'pseudorandom secret sharing', 'PRSS'
],
license=mpyc.__license__,
packages=['mpyc'],
platforms=['any'],
python_requires='>=3.6'
)