pyUmbral/setup.py

20 lines
491 B
Python
Raw Normal View History

2017-12-28 01:06:20 +00:00
from distutils.core import setup, Extension
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'])