add setup.py to and an example mpc program

This commit is contained in:
Erik Taubeneck
2022-08-03 15:12:40 -04:00
parent 4859a09633
commit 24a7b4f69d
2 changed files with 38 additions and 0 deletions

7
setup.py Normal file
View File

@@ -0,0 +1,7 @@
from setuptools import setup, find_packages
setup(
name='mp-spdz-compiler',
version='0.1.0',
packages=find_packages(include=['Compiler', 'Compiler.*'])
)