2018-07-25 17:55:12 +00:00
|
|
|
"""
|
|
|
|
Copyright (C) 2018 NuCypher
|
|
|
|
|
|
|
|
This file is part of pyUmbral.
|
|
|
|
|
|
|
|
pyUmbral is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
pyUmbral is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with pyUmbral. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
|
2018-07-08 22:41:24 +00:00
|
|
|
from distutils.core import setup
|
2017-12-28 01:06:20 +00:00
|
|
|
|
2018-07-08 22:41:24 +00:00
|
|
|
from cffi.setuptools_ext import execfile
|
|
|
|
|
|
|
|
execfile(filename='./__version__.py', glob="__version__")
|
|
|
|
|
|
|
|
INSTALL_REQUIRES = ['msgpack-python', 'pynacl']
|
2017-12-28 01:06:20 +00:00
|
|
|
|
|
|
|
TESTS_REQUIRE = [
|
|
|
|
'pytest',
|
|
|
|
'coverage',
|
|
|
|
'pytest-cov',
|
|
|
|
'pdbpp',
|
|
|
|
'ipython'
|
|
|
|
]
|
|
|
|
|
|
|
|
setup(name='umbral',
|
2018-07-08 22:41:42 +00:00
|
|
|
version='0.1.0-alpha.0',
|
2018-07-08 22:41:24 +00:00
|
|
|
description='Umbral PRE implementation for NuCypher',
|
2017-12-28 01:06:20 +00:00
|
|
|
extras_require={'testing': TESTS_REQUIRE},
|
|
|
|
install_requires=INSTALL_REQUIRES,
|
|
|
|
packages=['umbral'])
|