-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (28 loc) · 891 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
30
31
32
33
34
#!/usr/bin/env python3
"""
setup.py
Boucher, Govedič, Saowakon, Swanson 2019
Setup script for installation.
"""
import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name='damgard-jurik',
version='0.0.3',
author='Nicholas Boucher, Luka Govedič, Pasapol Saowakon, Kyle Swanson',
author_email='[email protected]',
description='Homomorphic encryption using the threshold variant of the Damgard-Jurik cryptosystem.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cryptovoting/damgard-jurik',
packages=setuptools.find_packages(),
install_requires=[
'gmpy2'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)