-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (47 loc) · 1.67 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='coinzdense',
version='0.1.2',
description='Simple Post-Quantum Signature library',
long_description="""Library for hash-based signatures.
The CoinZdense projects aim to provide simple post-quantum-ready
hash-based signatures geared specifically at :
* utility blockchain projects
* distributed exchange projects
* other blockchain projects that are commonly used in a key-reuse
by design way.
CoinZdense explicitly does NOT aim at being a post-quantum solution
for blockchain projects that neither rely nor would benefit from
extensive re-usage of signing keys.
See https://coin.z-den.se/ for more info.
""",
url='https://github.com/pibara/coinzdense-python',
author='Rob J Meijer',
author_email='pibara@gmail.com',
license='BSD',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Environment :: Other Environment'
],
keywords='signing postquantum blake2 merkletree ots',
install_requires=[
"libnacl>1.8.0=",
"pynacl>=1.4.0",
"sympy",
"base58",
"starkbank-ecdsa"
],
packages=find_packages(),
)