Metadata-Version: 2.1
Name: sigtools
Version: 2.0.3
Summary: Utilities for working with inspect.Signature objects.
Home-page: https://sigtools.readthedocs.io/
Author: Yann Kaiser
Author-email: kaiser.yann@gmail.com
License: MIT
Keywords: introspection signature
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: six
Requires-Dist: funcsigs (>=0.4) ; python_version in "2.6  2.7  3.2"
Requires-Dist: ordereddict ; python_version in "2.6"
Provides-Extra: tests
Requires-Dist: repeated-test ; extra == 'tests'
Requires-Dist: sphinx ; extra == 'tests'
Requires-Dist: mock ; extra == 'tests'
Requires-Dist: coverage ; extra == 'tests'
Requires-Dist: unittest2 ; extra == 'tests'

``sigtools``: utilities to manipulate callable objects' signatures
==================================================================

The ``sigtools`` python library provides:

* Decorators to specify keyword-only parameters, annotations and
  positional-only parameters, even on python2: ``sigtools.modifiers``
* Decorators to specify how ``*args, **kwargs`` are handled, in a way
  that can be introspected: ``sigtools.specifiers``
* Function combination routines that preserve signatures: ``sigtools.wrappers``
* Functions to manipulate signature objects likewise: ``sigtools.signatures``

The documentation can be found at Read The Docs:
https://sigtools.readthedocs.org

Installing
----------

Within a `virtualenv
<https://virtualenv.readthedocs.org/en/latest/virtualenv.html>`_::

    $ pip install sigtools

Or for a user-wide install::

    $ pip install --user sigtools


