Skip to content

Commit

Permalink
devel/py-devtools: Update to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Jul 30, 2022
1 parent 649ff78 commit e3e3b3c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 4 deletions.
5 changes: 4 additions & 1 deletion devel/py-devtools/Makefile
@@ -1,5 +1,5 @@
PORTNAME= devtools
PORTVERSION= 0.8.0
PORTVERSION= 0.9.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -23,4 +23,7 @@ PYGMENTS_DESC= Highlighted output support

PYGMENTS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=2.2.0:textproc/py-pygments@${PY_FLAVOR}

post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py

.include <bsd.port.mk>
6 changes: 3 additions & 3 deletions devel/py-devtools/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1632773636
SHA256 (devtools-0.8.0.tar.gz) = 6162a2f61c70242479dff3163e7837e6a9bf32451661af1347bfa3115602af16
SIZE (devtools-0.8.0.tar.gz) = 14975
TIMESTAMP = 1659161163
SHA256 (devtools-0.9.0.tar.gz) = 86ede6e0273e023db766344d14098228785b48a80f31716f28e8b9453d52fa1e
SIZE (devtools-0.9.0.tar.gz) = 68180
44 changes: 44 additions & 0 deletions devel/py-devtools/files/setup.py
@@ -0,0 +1,44 @@
# -*- coding: utf-8 -*-
from setuptools import setup

setup(
name='devtools',
version='%%PORTVERSION%%',
description="Python's missing debug print command, and more.",
long_description="# python devtools\n\n[![CI](https://github.com/samuelcolvin/python-devtools/workflows/CI/badge.svg?event=push)](https://github.com/samuelcolvin/python-devtools/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)\n[![Coverage](https://codecov.io/gh/samuelcolvin/python-devtools/branch/main/graph/badge.svg)](https://codecov.io/gh/samuelcolvin/python-devtools)\n[![pypi](https://img.shields.io/pypi/v/devtools.svg)](https://pypi.python.org/pypi/devtools)\n[![versions](https://img.shields.io/pypi/pyversions/devtools.svg)](https://github.com/samuelcolvin/python-devtools)\n[![license](https://img.shields.io/github/license/samuelcolvin/python-devtools.svg)](https://github.com/samuelcolvin/python-devtools/blob/main/LICENSE)\n\n**Python's missing debug print command and other development tools.**\n\nFor more information, see [documentation](https://python-devtools.helpmanual.io/).\n\n## Install\n\nJust\n\n```bash\npip install devtools[pygments]\n```\n\n`pygments` is not required but if it's installed, output will be highlighted and easier to read.\n\n`devtools` has no other required dependencies except python 3.7, 3.8, 3.9 or 3.10.\nIf you've got python 3.7+ and `pip` installed, you're good to go.\n\n## Usage\n\n```py\nfrom devtools import debug\n\nwhatever = [1, 2, 3]\ndebug(whatever)\n```\n\nOutputs:\n\n```py\ntest.py:4 <module>:\n whatever: [1, 2, 3] (list)\n```\n\n\nThat's only the tip of the iceberg, for example:\n\n```py\nimport numpy as np\n\ndata = {\n 'foo': np.array(range(20)),\n 'bar': {'apple', 'banana', 'carrot', 'grapefruit'},\n 'spam': [{'a': i, 'b': (i for i in range(3))} for i in range(3)],\n 'sentence': 'this is just a boring sentence.\\n' * 4\n}\n\ndebug(data)\n```\n\noutputs:\n\n![python-devtools demo](https://raw.githubusercontent.com/samuelcolvin/python-devtools/main/demo.py.png)\n\n## Usage without Import\n\ndevtools can be used without `from devtools import debug` if you add `debug` into `__builtins__`\nin `sitecustomize.py`.\n\nFor instructions on adding `debug` to `__builtins__`, \nsee the [installation docs](https://python-devtools.helpmanual.io/usage/#usage-without-import).\n",
author_email='Samuel Colvin <s@muelcolvin.com>',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Typing :: Typed',
],
install_requires=[
'asttokens<3.0.0,>=2.0.0',
'executing<1.0.0,>=0.8.0',
],
extras_require={
'pygments': [
'pygments>=2.2.0',
],
},
packages=[
'devtools',
'tests',
],
)

0 comments on commit e3e3b3c

Please sign in to comment.