2017-12-28 01:06:20 +00:00
|
|
|
from distutils.core import setup, Extension
|
|
|
|
|
2018-05-01 21:29:55 +00:00
|
|
|
INSTALL_REQUIRES = ['msgpack-python', 'pynacl'] #'pysha3',# TODO: Add cryptography wheel
|
2017-12-28 01:06:20 +00:00
|
|
|
|
|
|
|
TESTS_REQUIRE = [
|
|
|
|
'pytest',
|
|
|
|
'coverage',
|
|
|
|
'pytest-cov',
|
|
|
|
'pdbpp',
|
|
|
|
'ipython'
|
|
|
|
]
|
|
|
|
|
|
|
|
setup(name='umbral',
|
|
|
|
version='0.1',
|
|
|
|
description='Umbral PRE implementation for NuCypher KMS',
|
|
|
|
#ext_modules=[elliptic_curve],
|
|
|
|
extras_require={'testing': TESTS_REQUIRE},
|
|
|
|
install_requires=INSTALL_REQUIRES,
|
|
|
|
packages=['umbral'])
|