Update project metadata and copyright

pull/190/head
Kieran Prasch 2018-08-18 17:51:44 -07:00
parent 7585b81851
commit c65cf525de
2 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,12 @@
from __future__ import absolute_import, division, print_function
__all__ = [
"__title__", "__summary__", "__version__", "__author__", "__license__",
"__title__", "__summary__", "__version__", "__author__", "__license__", "__copyright__"
]
__title__ = "umbral"
__summary__ ='Umbral PRE implementation for NuCypher',
__summary__ = 'Nucypher\'s Umbral Proxy Re-Encryption Implementation',
__version__ = "0.1.0-alpha.0"
@ -14,4 +14,4 @@ __author__ = "NuCypher"
__license__ = "GNU General Public License, Version 3"
# __copyright__ = '2018, Michael Egorov, Justin Myles Holmes, David Nuñez, John Pacific, Kieran Prasch'
__copyright__ = 'Copyright (C) 2018 NuCypher'

View File

@ -18,10 +18,10 @@ along with pyUmbral. If not, see <https://www.gnu.org/licenses/>.
"""
from umbral.__about__ import (
__author__, __license__, __summary__, __title__, __version__
__author__, __license__, __summary__, __title__, __version__, __copyright__
)
__all__ = [
"__title__", "__summary__", "__version__", "__author__", "__license__",
"__title__", "__summary__", "__version__", "__author__", "__license__", "__copyright__",
]