-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 708 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 708 Bytes
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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='threshold-crypto',
version='0.3.0',
keywords='elgamal threshold decryption',
description='ElGamal-based threshold decryption',
long_description=readme(),
url='https://github.com/tompetersen/threshold-crypto',
author='Tom Petersen, SVS, Universität Hamburg',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
],
install_requires=[
'pynacl',
],
)