Metadata-Version: 2.1
Name: pydeco
Version: 0.3
Summary: Python Class Methods Decorator
Home-page: https://github.com/paulroujansky/pydeco
Author: Paul Roujansky
Author-email: paul@roujansky.eu
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/x-rst
Requires-Dist: codecov
Requires-Dist: pytest
Requires-Dist: pytest-cov
Requires-Dist: coverage
Requires-Dist: numpydoc
Requires-Dist: sphinx
Requires-Dist: sphinx-bootstrap-theme
Requires-Dist: sphinx-gallery
Requires-Dist: joblib

.. -*- mode: rst -*-


|Travis|_ |Circle|_ |Codecov|_ |PyPi|_ |License MIT|_

.. |Travis| image:: https://api.travis-ci.org/paulroujansky/pydeco.png?branch=master
.. _Travis: https://travis-ci.org/paulroujansky/pydeco/branches

.. |Circle| image:: https://circleci.com/gh/paulroujansky/pydeco.svg?style=svg
.. _Circle: https://circleci.com/gh/paulroujansky

.. |Codecov| image:: https://codecov.io/gh/paulroujansky/pydeco/branch/master/graph/badge.svg
.. _Codecov: https://codecov.io/gh/paulroujansky/pydeco

.. |Python35| image:: https://img.shields.io/badge/python-3.5-blue.svg
.. _Python35: https://badge.fury.io/py/scikit-learn

.. |PyPi| image:: https://badge.fury.io/py/pydeco.svg
.. _PyPi: https://badge.fury.io/py/pydeco

.. |License MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
.. _License MIT: https://opensource.org/licenses/MIT

PyDeco
======

This package enable to decorate any specified class methods with a passed decorator.
The resulting wrapped class is `picklable`_.

Documentation
^^^^^^^^^^^^^

`PyDeco documentation`_ is available online.

Installing PyDeco
^^^^^^^^^^^^^^^^^

To install the latest stable version of PyDeco, you can use pip in a terminal:

.. code-block:: bash

    pip install -U pydeco

Source code
^^^^^^^^^^^

You can check the latest sources with the command:

.. code-block:: bash

    git clone https://github.com/paulroujansky/pydeco.git

Contributing
^^^^^^^^^^^^

To learn more about making a contribution to PyDeco, please see the `Contributing guide`_.

License
^^^^^^^

This software is licensed under the `MIT license`_.

© 2019 Paul Roujansky.

.. External references:
.. _examples: https://github.com/paulroujansky/pydeco/tree/master/examples
.. _PyDeco documentation: https://pydeco.readthedocs.io/en/latest/
.. _MIT license: http://en.wikipedia.org/wiki/MIT_License
.. _Contributing guide: https://pydeco.readthedocs.io/en/latest/contributing.html
.. _picklable: https://docs.python.org/3/library/pickle.html

