From 8ce46524a7d0f69db0ccbb8a856c4ded48f97f1a Mon Sep 17 00:00:00 2001 From: Laurent Girod Date: Tue, 17 Mar 2020 09:08:28 +0100 Subject: [PATCH] Update version. --- petrelic/__init__.py | 4 ++-- setup.py | 2 +- wheel/build-wheels.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/petrelic/__init__.py b/petrelic/__init__.py index 8e4c322..ee1b495 100644 --- a/petrelic/__init__.py +++ b/petrelic/__init__.py @@ -1,8 +1,8 @@ -__version__ = "0.0.0" +__version__ = "0.1.0" __title__ = "petrelic" __author__ = "Wouter Lueks" __email__ = "wouter.lueks@epfl.ch" __url__ = "https://github.com/spring-epfl/petrelic" -__license__ = "Apache 2.0" +__license__ = "MIT" __description__ = "A Python binding for the RELIC cryptographic library" __copyright__ = "EPFL, Spring Lab, 2019" diff --git a/setup.py b/setup.py index 658a245..28d3bcd 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def is_pure(self): long_description=long_description, author=__author__, author_email=__email__, - packages=['petrelic', 'petrelic.additive', 'petrelic.petlib'], + packages=['petrelic', 'petrelic.additive', 'petrelic.multiplicative', 'petrelic.native', 'petrelic.petlib'], package_data={ 'petrelic': ['libgmp.so', 'librelic.so'], }, diff --git a/wheel/build-wheels.sh b/wheel/build-wheels.sh index a7e1570..29ce86c 100644 --- a/wheel/build-wheels.sh +++ b/wheel/build-wheels.sh @@ -1,7 +1,7 @@ #!/bin/bash GMP_VERSION='6.2.0' -PETRELIC_VERSION='0.0.2' +PETRELIC_VERSION='0.1.0' RELIC_URL='https://github.com/relic-toolkit/relic.git' HOST_MOUNT="/host"