123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- Metadata-Version: 2.0
- Name: pike
- Version: 0.1.1
- Summary: Lightweight plugin management system for Python
- Home-page: https://github.com/pyarmory/pike
- Author: John Vrbanac
- Author-email: john.vrbanac@linux.com
- License: Apache v2
- Keywords: plugin management modules
- Platform: UNKNOWN
- Classifier: Development Status :: 3 - Alpha
- Classifier: Intended Audience :: Developers
- Classifier: License :: OSI Approved :: Apache Software License
- Classifier: Programming Language :: Python :: 2.7
- Classifier: Programming Language :: Python :: 3.3
- Classifier: Programming Language :: Python :: 3.4
- Requires-Dist: six
- Pike
- ====
- .. image:: https://travis-ci.org/pyarmory/pike.svg?branch=master
- :target: https://travis-ci.org/pyarmory/pike
- :alt: Travis CI Build
- .. image:: http://codecov.io/github/pyarmory/pike/coverage.svg?branch=master
- :target: http://codecov.io/github/pyarmory/pike?branch=master
- :alt: Coverage
- .. image:: https://readthedocs.org/projects/pyarmory-pike/badge/?version=latest
- :target: https://readthedocs.org/projects/pyarmory-pike/?badge=latest
- .. image:: https://codeclimate.com/github/pyarmory/pike/badges/gpa.svg
- :target: https://codeclimate.com/github/pyarmory/pike
- :alt: Code Climate
- Pike is a dynamic plugin management library for Python. Unlike most Python
- plugin managers, Pike allows for you to load Python packages from anywhere
- on a filesystem without complicated configuration. This enables applications
- to easily add the ability to expand their functionality through plugin modules.
- In addition to plugin management, Pike also includes a set of discovery
- functions for custom module and class discovery.
- * Documentation: ReadTheDocs_
- * CI: Travis_
- * Coverage: CodeCov_
- .. _ReadTheDocs: http://pyarmory-pike.readthedocs.org/
- .. _Travis: https://travis-ci.org/pyarmory/pike
- .. _CodeCov: https://codecov.io/github/pyarmory/pike?branch=master
|