-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (29 loc) · 850 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
35
#!/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="shuffle-sum",
version="0.0.1",
author="Boucher, Govedič, Saowakon, Swanson",
description="Tallying of single transferable vote ballots using the Shuffle-Sum protocol.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cryptovoting/shuffle-sum",
packages=setuptools.find_packages(),
install_requires=[
'damgard-jurik',
'gmpy2',
'tqdm'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)