forked from lschoe/mpyc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.51 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""MPyC setup script.
Run: "pip install ."
Or: "pip install -e ."
"""
from setuptools import setup
import mpyc
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='mpyc',
version=mpyc.__version__,
author='Berry Schoenmakers',
author_email='berry@win.tue.nl',
url='https://github.com/lschoe/mpyc',
description='MPyC for Multiparty Computation in Python',
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'],
classifiers=[
'Development Status :: 3 - Alpha',
'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=mpyc.__license__,
packages=['mpyc'],
platforms=['any'],
python_requires='>=3.8'
)