Metadata-Version: 2.1
Name: aap-client-python
Version: 1.0.0b1
Summary: AAP Client
Home-page: https://github.com/EMBL-EBI-TSI/aap-client-python
Author: Pau Ruiz Safont
Author-email: psafont@ebi.ac.uk
License: Apache 2.0
Keywords: aap jose jwt auth flask
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Provides-Extra: docs
Provides-Extra: dev
Provides-Extra: test
Provides-Extra: flask
Provides-Extra: lint
Requires-Dist: pyjwt[crypto] (>=1.5.2)
Requires-Dist: future (>=0.16.0)
Provides-Extra: dev
Requires-Dist: flask (>=0.12.2); extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx (>=1.7.5); extra == 'docs'
Requires-Dist: sphinxcontrib-fulltoc; extra == 'docs'
Requires-Dist: flask (>=0.12.2); extra == 'docs'
Provides-Extra: flask
Requires-Dist: flask (>=0.12.2); extra == 'flask'
Provides-Extra: lint
Requires-Dist: pylint; extra == 'lint'
Requires-Dist: flask (>=0.12.2); extra == 'lint'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: python-testdata-tsi (>=0.2.0.1); extra == 'test'
Requires-Dist: flask (>=0.12.2); extra == 'test'

.. image:: https://travis-ci.org/EMBL-EBI-TSI/aap-client-python.svg?branch=master
   :target: https://travis-ci.org/EMBL-EBI-TSI/aap-client-python
.. image:: https://codecov.io/gh/EMBL-EBI-TSI/aap-client-python/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/EMBL-EBI-TSI/aap-client-python
.. image:: https://readthedocs.org/projects/aap-client-python/badge/?version=latest
   :target: https://aap-client-python.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status


Overview
########

This library is meant to be used in the backed to interact with Tokens produced by EBI's AAP

Cryptographic files here shouldn't be used in production, they're just for testing :)

Usage
#####

To install the package, enable the virtual environment where it's going to be used and run
``$ pip install aap-client-python``

To use the Flask functionality this needs to be installed:
``$ pip install aap-client-python[flask]``

Developing
##########

To prepare the environment for developing the library, create a virtual environment, go to project root and then run:

::

  $ pip install -e .[dev]

Testing
#######
The recommended way is to test using detox.
This allows for testing in all the supported python versions using virtual environments effortlessly.
To use, install it, then run in the project root:

::

  $ pip install detox
  $ detox

Alternatively, testing can be done in the same environment as the dev one by installing it's dependencies, then running pytest:

::

  $ pip install -e .[test]
  $ python -m pytest -s


