forked from shea256/secret-sharing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 872 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
"""
Secret Sharing
==============
"""
from setuptools import setup
setup(
name='bip39-secretsharing',
version='0.0.1',
url='https://github.com/seedhodler/secret-sharing',
license='MIT',
author='Seedhodler',
author_email='[email protected]',
description="Tools for generating bip39 mnemonics and sharing them using Shamir Secret Sharing. This tool is only for demo purposes",
packages=[
'secretsharing',
],
zip_safe=True,
dependency_links=['https://github.com/trezor/python-mnemonic.git#egg-info=mnemonic-0.18'],
install_requires=[
'pbkdf2',
'pycrypto',
'mnemonic==0.18'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)