From ea3b12dfcf9b39b951fb46fd16f76e72ceb5a65d Mon Sep 17 00:00:00 2001 From: Pedro Ferreira Date: Sun, 4 Jun 2017 23:38:20 +0200 Subject: [PATCH] Add travis config --- .travis.yml | 8 ++++++++ README.rst | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4b6e0b9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: python +python: + - "3.6.1" + - "3.7-dev" +install: + - pip install .[tests] + - pip install coveralls +script: pytest diff --git a/README.rst b/README.rst index 8e50607..13db6ec 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,13 @@ PySecretHandshake - Secret Handshake in Python ============================================== +|build-status| + This module implements Secret Handshake as specified in Dominc Tarr's paper `"Designing a Secret Handshake: Authenticated Key Exchange as a Capability System" `_ (Dominic Tarr, 2015). **Please, don't use this package in production. The implementation hasn't yet been carefully checked.** + +.. |build-status| image:: https://travis-ci.org/pferreir/PySecretHandshake.svg?branch=master + :alt: Travis Build Status + :target: https://travis-ci.org/pferreir/PySecretHandshake