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