forked from scottwn/PyNewHope
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (18 loc) · 658 Bytes
/
setup.py
File metadata and controls
24 lines (18 loc) · 658 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
#!/usr/bin/env python
import os
from setuptools import setup
def read_(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="PyNewHope",
version="0.3",
packages=["pynewhope"],
author="Scott Wyman Neagle, Svetlin Nakov",
description=(
"An experimental implementation of the NewHope post-quantum key exchange algorithm"),
license="MIT",
keywords=["NewHope", "PQC", "post-quantum-cryptography", "key-exchange", "cryptography"],
url="https://github.com/nakov/PyNewHope",
download_url = "https://github.com/nakov/PyNewHope",
long_description=read_("README.md")
)