-
Notifications
You must be signed in to change notification settings - Fork 143
/
setup.py
33 lines (30 loc) · 797 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='secretsharing',
version='0.2.6',
url='https://github.com/onenameio/secret-sharing',
license='MIT',
author='Halfmoon Labs',
author_email='[email protected]',
description=("Tools for sharing secrets (like Bitcoin private keys), "
"using shamir's secret sharing scheme."),
packages=[
'secretsharing',
],
zip_safe=False,
install_requires=[
'six',
'utilitybelt',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
)