Metadata-Version: 2.1
Name: py-devtools-builtin
Version: 1.0.0
Summary: Add devtools.debug() to python builtins
Home-page: https://github.com/Cielquan/py-devtools-builtin
License: Unlicense
Keywords: python-devtools,python,builtin,debugging
Author: Cielquan
Author-email: cielquan@protonmail.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Project-URL: Repository, https://github.com/Cielquan/py-devtools-builtin
Description-Content-Type: text/x-rst

===================
py-devtools-builtin
===================

**Add devtools.debug() to python builtins**

.. image:: https://img.shields.io/badge/Maintenance%20Intended-✖-red.svg?style=flat-square
    :target: http://unmaintained.tech/
    :alt: Maintenance - not intended

.. image:: https://img.shields.io/github/license/Cielquan/py-devtools-builtin.svg?style=flat-square&label=License
    :target: https://github.com/Cielquan/py-devtools-builtin/blob/master/LICENSE.txt
    :alt: License

.. image:: https://img.shields.io/pypi/v/py-devtools-builtin.svg?style=flat-square&logo=pypi&logoColor=FBE072
    :target: https://pypi.org/project/py-devtools-builtin/
    :alt: PyPI - Package latest release

.. image:: https://img.shields.io/pypi/pyversions/py-devtools-builtin.svg?style=flat-square&logo=python&logoColor=FBE072
    :target: https://pypi.org/project/py-devtools-builtin/
    :alt: PyPI - Supported Python Versions

.. image:: https://img.shields.io/pypi/implementation/py-devtools-builtin.svg?style=flat-square&logo=python&logoColor=FBE072
    :target: https://pypi.org/project/py-devtools-builtin/
    :alt: PyPI - Supported Implementations

`python-devtools <https://github.com/samuelcolvin/python-devtools>`__ is a tool with
multiple debug functionality. As described in the
`docs <https://python-devtools.helpmanual.io/usage/#usage-without-import>`__ you can
add its toolset to the python builtins with a little trick. But instead of adding the
import to ``sitecustomize.py`` or ``usercustomize.py`` you can also write it to a
``*.py`` file in the ``site-packages`` directory and also add a ``*.pth`` file which
then imports the first file. This package does exactly that.

Simply install this package alongside ``devtools`` and you have its toolset available
without an explicit import::

    $ pip install devtools py-devtools-builtin

