forked from mynameisfiber/cryptohelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 885 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='cryptohelper',
version='0.2.2',
description='Helper functions to make using RSA+AES encryption with '
'a redundantly split shared key more easy',
author='Micha Gorelick',
author_email='mynameisfiber@gmail.com',
url='http://github.com/mynameisfiber/cryptohelper/',
download_url='https://github.com/mynameisfiber/cryptohelper/tarball/master',
license="MIT",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Security :: Cryptography",
],
packages=['cryptohelper'],
install_requires=[
"pycrypto>=2.6.1",
"secretsharing>=0.2.9",
],
dependency_links=[
"https://github.com/mynameisfiber/secret-sharing/tarball/master#egg=secretsharing",
],
)