pkgsrc/devel/py-flake8-docstrings/Makefile
adam 7b1e9b0ef9 py-flake8-docstrings: updated to 1.5.0
1.5.0

- Add --ignore-decorators option which allows functions with a specific
  decorator to ignore error codes.

1.4.0

- Add --docstring-convention option which allows selection of conventions
  besides the default pep257.  Available options are based on those
  available from pydocstyle and are currently pep257, google, and
  numpy.  flake8-docstrings also adds a special all docstring
  convention which will enable all rules from pydocstyle.  Note that
  pydocstyle defines some conflicting rules so you'll want to use
  ignore / extend-ignore when selecting docstring-convention = all

- Bump minimum flake8 version to 3

- Fix proper handling of stdin via --stdin-display-name
2019-10-22 06:51:54 +00:00

19 lines
592 B
Makefile

# $NetBSD: Makefile,v 1.2 2019/10/22 06:51:54 adam Exp $
DISTNAME= flake8-docstrings-1.5.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=f/flake8-docstrings/}
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= https://gitlab.com/pycqa/flake8-docstrings
COMMENT= Extension for flake8 using pydocstyle to check docstrings
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-docstyle>=2.1.0:../../devel/py-docstyle
DEPENDS+= ${PYPKGPREFIX}-flake8>=3.0.0:../../devel/py-flake8
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"