Metadata-Version: 2.0
Name: pyramid-authsanity
Version: 0.1.0a2
Summary: A service layer abstraction for the Pyramid Web Framework.
Home-page: https://github.com/usingnamespace/pyramid_authsanity
Author: Bert JW Regeer
Author-email: bertjw@regeer.org
License: UNKNOWN
Keywords: pyramid authorization policy
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Pyramid
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: pyramid
Requires-Dist: pyramid-services
Requires-Dist: zope.interface
Provides-Extra: coverage
Requires-Dist: coverage; extra == 'coverage'
Requires-Dist: pyramid; extra == 'coverage'
Requires-Dist: pyramid-services; extra == 'coverage'
Requires-Dist: pytest; extra == 'coverage'
Requires-Dist: pytest-cov; extra == 'coverage'
Requires-Dist: zope.interface; extra == 'coverage'
Provides-Extra: docs
Requires-Dist: pyramid; extra == 'docs'
Requires-Dist: pyramid-services; extra == 'docs'
Requires-Dist: repoze.sphinx.autointerface; extra == 'docs'
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: zope.interface; extra == 'docs'
Provides-Extra: testing
Requires-Dist: pyramid; extra == 'testing'
Requires-Dist: pyramid-services; extra == 'testing'
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: zope.interface; extra == 'testing'

==================
pyramid_authsanity
==================

An sane defaults auth policy for the `Pyramid Web Framework
<https://docs.pylonsproject.org/projects/pyramid>`__. that works with `Michael
Merickel's <http://michael.merickel.org>`__ absolutely fantastic
`pyramid_services <https://github.com/mmerickel/pyramid_services>`__ to provide
an easy to use authorization policy that incorporates web security best
practices.

Installation
============

Install from `PyPI <https://pypi.python.org/pyramid_authsanity>`__ using
``pip`` or ``easy_install`` inside a virtual environment.

::

  $ $VENV/bin/pip install pyramid_authsanity

Or install directly from source.

::

  $ git clone https://github.com/usingnamespace/pyramid_authsanity.git
  $ cd pyramid_authsanity
  $ $VENV/bin/pip install -e .

Setup
=====

Activate ``pyramid_authsanity`` by including it into your pyramid application.

::

  config.include('pyramid_authsanity')



0.1.0a2
=======

- Bert was asleep at the keyboard, the fix below is now actually properly fixed
  by decoding to ascii, which is safe because it is base64.

0.1.0a1
=======

- Ticket value is now a string instead of binary, this way Python 3's
  json.dumps() will be able to serialize the value sent to the sources
  remember function.


0.1.0a0
=======

 - Initial release.


