Metadata-Version: 1.2
Name: devtools
Version: 0.0.2
Summary: Dev tools for python
Home-page: https://github.com/samuelcolvin/python-devtools
Author: Samuel Colvin
Author-email: s@muelcolvin.com
License: MIT
Description: python devtools
        ===============
        
        |BuildStatus| |Coverage| |pypi|
        
        Dev tools for python. **WIP**
        
        Install
        -------
        
        Just::
        
            pip install devtools
        
        Usage
        -----
        
        .. code:: python
        
           from devtools import debug
        
           whatever = [1, 2, 3]
           debug(whatever)
        
        Outputs::
        
           test.py:4 <module>: whatever = [1, 2, 3] (list)
        
        Usage without Import
        --------------------
        
        modify ``/usr/lib/python3.6/sitecustomize.py`` making ``debug`` available in any python 3.6 code
        
        .. code:: python
        
           from devtools import debug
           __builtins__['debug'] = debug
        
        
        .. |BuildStatus| image:: https://travis-ci.org/samuelcolvin/python-devtools.svg?branch=master
           :target: https://travis-ci.org/samuelcolvin/python-devtools
        .. |Coverage| image:: https://codecov.io/gh/samuelcolvin/python-devtools/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/samuelcolvin/python-devtools
        .. |pypi| image:: https://img.shields.io/pypi/v/devtools.svg
           :target: https://pypi.org/project/devtools
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: MacOS X
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
