invokelint


Nameinvokelint JSON
Version 0.10.0 PyPI version JSON
download
home_pageNone
SummaryInvokes Python dev tools at once.
upload_time2024-04-13 14:13:55
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2023 Yukihiko Shinoda Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords autoflake bandit black build coverage dist docformatter doggy flake8 invokelint isort mypy pydocstyle pylint pytest radon ruff semgrep xenon
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Invoke Lint

[![Test](https://github.com/yukihiko-shinoda/invoke-lint/workflows/Test/badge.svg)](https://github.com/yukihiko-shinoda/invoke-lint/actions?query=workflow%3ATest)
[![CodeQL](https://github.com/yukihiko-shinoda/invoke-lint/workflows/CodeQL/badge.svg)](https://github.com/yukihiko-shinoda/invoke-lint/actions?query=workflow%3ACodeQL)
[![Test Coverage](https://api.codeclimate.com/v1/badges/935364d296051fb926c8/test_coverage)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint/test_coverage)
[![Maintainability](https://api.codeclimate.com/v1/badges/935364d296051fb926c8/maintainability)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint/maintainability)
[![Code Climate technical debt](https://img.shields.io/codeclimate/tech-debt/yukihiko-shinoda/invoke-lint)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint)
[![Python versions](https://img.shields.io/pypi/pyversions/invokelint.svg)](https://pypi.org/project/invokelint)
[![Twitter URL](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fgithub.com%2Fyukihiko-shinoda%2Finvoke-lint)](http://twitter.com/share?text=Invoke%20Lint&url=https://pypi.org/project/invokelint/&hashtags=python)

Invokes Python dev tools at once.

## Attention

- The development status of this package is Beta now. It may not be able to keep backward compatibility. Be careful to use, especially for CI.
- Currently, each commands require to run in project home directory.

## Advantage

1. Covers major development tools and they are optional to install
1. Quick response for developer, slow but detail for CI
1. Available to place commands into your selected namespace

### 1. Covers major development tools and they are optional to install

You can choose which dev tool you'll install, this package doesn't force to install each of dev tools. It helps you to avoid conflicts or breaking your project's dependencies.

Supporting tools:

Linters:

- [Xenon]
- [Ruff]
- [Bandit]
- [dodgy]
- [Flake8]
- [pydocstyle]
- [mypy]
- [Pylint]
- [Semgrep]

Formatters:

- [docformatter]
- [isort]
- [autoflake]
- [Black]

For test and coverage:

- [pytest]
- [Coverage.py]

Package build:

- [build]

### 2. Quick response for developer, slow but detailed for CI

The commands for each kind of tasks are designed as unified into 2 main commands:

- For developer: Runs only quick responsive dev tools at once
- For CI (or final check): Runs slow but detailed responsive tools at once

### 3. Available to place commands into your selected namespace

This doesn't pollute your comfortable namespaces of command line tools. Thanks to [Invoke], you can place commands into your selected namespace. (See: [Quickstart](#quickstart))

## Representative commands

(Note that the namespaces of following commands can be changed as you like. See: [Quickstart](#quickstart))

### `inv style`

Formats code by following tools at once:

1. [docformatter]
2. [isort]
3. [autoflake]
4. [Black]
5. [Ruff]

- `inv style --check` can only check.
- `inv style --ruff` can leave Ruff warnings.

### `inv lint`

Runs following fast lints at once:

1. [Xenon]
2. [Ruff]
3. [Bandit]
4. [dodgy]
5. [Flake8]
6. [pydocstyle]

The format task ([described later](#inv-style)) also run before run above lints. You can skip them by `--skip-format` option.

### `inv lint.deep`

Runs following slow but detailed lints at once:

1. [mypy]
2. [Pylint]
3. [Semgrep]

### `inv radon`

Reports [radon] both code complexity and maintainability index.

### `inv test`

Runs fast tests (which is not marked `@pytest.mark.slow`) by [pytest].

See:

- [How to mark test functions with attributes — pytest documentation]
- [Working with custom markers — pytest documentation]

### `inv test.cov`

Runs all tests and report coverage by [pytest] and [Coverage.py].

It also can dump coverage as XML or HTML format.

### `inv dist`

Builds source and wheel packages into `dist/` directory by [build].  
(Currently, not support in Windows)

See:

- [Building and Distributing Packages with Setuptools - setuptools latest documentation]
- [Package Discovery and Namespace Packages - setuptools latest documentation]

## Quickstart

### 1. Install

It's better to use one of [dependency management tools] to resolve dependencies of many dev tools.

For example, in case when use [Pipenv], `Pipfile`:

```toml
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[dev-packages]
autoflake = "*"
bandit = {version = "*", markers="python_version >= '3.7'"}
black = {version = "*", markers="python_version >= '3.7'"}
build = "*"
# Hotfix for Pipenv's Bug:
# - Pipenv should prioritize more cross-platform sys_platform condition between packages when lock
#   · Issue #4101 · pypa/pipenv
#   https://github.com/pypa/pipenv/issues/4101
colorama = "*"
# Pipenv can't crawl coverage==3.5.3:
# - Command: "pipenv install --skip-lock" fails 
#   since it tries to parse legacy package metadata and raise InstallError
#   · Issue #5595 · pypa/pipenv
#   https://github.com/pypa/pipenv/issues/5595#issuecomment-1454769781
coverage = ">=3.5.4"
# The dlint less than 0.14.0 limits max version of flake8.
dlint = ">=0.14.0"
docformatter = {extras = ["tomli"], version = "*"}
dodgy = "*"
# Since Pipenv can't lock for too much combinations to attempt lock:
# pip._vendor.resolvelib.resolvers.ResolutionTooDeep: 2000000
# The hacking depends flake8 ~=6.1.0 or ~=5.0.1 or ~=4.0.1.
flake8 = {version = "!=6.0.0,!=5.0.0,>=4.0.1", markers="python_version >= '3.6'"}
# To use flake8 --radon-show-closures
flake8-polyfill = "*"
# Latest hacking depends on legacy version of flake8, and legacy hacking doesn't narrow flake8 version.
# When unpin hacking, it has possibility to install too legacy version of hacking.
hacking = {version = ">=5.0.0", markers="python_version >= '3.8'"}
invokelint = {version = "*", markers="python_version >= '3.7'"}
isort = "*"
mypy = "*"
pydocstyle = {version = "*", markers="python_version >= '3.6'"}
pylint = "*"
pytest = "*"
radon = "*"
ruff = {version = "*", markers="python_version >= '3.7'"}
semgrep = {version = "*", markers="python_version >= '3.6'"}
tomli = {version = "*", markers="python_version >= '3.6'"}
xenon = "*"
```

then:

```console
pipenv install --dev
pipenv shell
```

### 2. Implement

Create `tasks.py` in project directory:

```python
"""Tasks for maintaining the project.

Execute 'invoke --list' for guidance on using Invoke
"""
from invoke import Collection

from invokelint import dist, lint, path, style, test

ns = Collection()
ns.add_collection(dist)
ns.add_collection(lint)
ns.add_collection(path)
ns.add_collection(style)
ns.add_collection(test)
```

Commands may be explicitly place with a different name than they were originally given via a name kwarg (or the 2nd regular arg):

```python
ns.add_collection(lint, 'namespace-you-wish')
```

See: [Constructing namespaces — Invoke documentation]

### 3. Check installation

```console
inv --list
```

### 4. Setup target package

This package reuses `setuptools` settings for package discovery for linting, formatting, and measuring coverage. You can check which package are discovered by `setuptools` and your project's settings, by following command:

```console
$ inv path
Setuptools detected packages: ['invokelint', 'invokelint.path']
Root packages: ['invokelint']
Setuptools detected Python modules: ['setup', 'tasks']
Existing test packages: ['tests']
Python file or directories to lint: ['invokelint', 'setup.py', 'tasks.py', 'tests']
Python file or directories to lint excluding test packages: ['invokelint', 'setup.py', 'tasks.py']
```

If result is not your expected, follow official documentation of `setuptools` to configure `pyproject.toml` (recommended), `setup.cfg`, or `setup.py`.

See: [Package Discovery and Namespace Packages - setuptools latest documentation]

<!-- markdownlint-disable no-trailing-punctuation -->
## How do I...
<!-- markdownlint-enable no-trailing-punctuation -->

### Suppress [`B101: assert_used`] in Bandit and [`assert (S101)`] in Ruff only in test files?

Set below configuration in `pyproject.toml`:

```toml
[tool.bandit.assert_used]
skips = ["tests/*"]

[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
```

Note that invoke-lint executes [Bandit] with option `--configfile=pyproject.toml`, so upper configuration will be applied.

See: [Configuration — Bandit documentation]

## Credits

This package was created with [Cookiecutter] and the [yukihiko-shinoda/cookiecutter-pypackage] project template.

[Cookiecutter]: https://github.com/audreyr/cookiecutter
[yukihiko-shinoda/cookiecutter-pypackage]: https://github.com/audreyr/cookiecutter-pypackage
[Invoke]: https://pypi.org/project/invoke/
[dependency management tools]: https://packaging.python.org/en/latest/tutorials/managing-dependencies/
[Pipenv]: https://pypi.org/project/pipenv/
[Ruff]: https://pypi.org/project/ruff/
[Bandit]: https://pypi.org/project/bandit/
[dodgy]: https://pypi.org/project/dodgy/
[Flake8]: https://pypi.org/project/flake8/
[pydocstyle]: https://pypi.org/project/pydocstyle/
[Xenon]: https://pypi.org/project/xenon/
[Pylint]: https://pypi.org/project/pylint/
[mypy]: https://pypi.org/project/mypy/
[Semgrep]: https://pypi.org/project/semgrep/
[radon]: https://pypi.org/project/radon/
[docformatter]: https://pypi.org/project/docformatter/
[isort]: https://pypi.org/project/isort/
[autoflake]: https://pypi.org/project/autoflake/
[Black]: https://pypi.org/project/black/
[pytest]: https://pypi.org/project/pytest/
[How to mark test functions with attributes — pytest documentation]: https://docs.pytest.org/en/latest/how-to/mark.html
[Working with custom markers — pytest documentation]: https://docs.pytest.org/en/latest/example/markers.html
[Coverage.py]: https://pypi.org/project/coverage/
[build]: https://pypi.org/project/build/
[Building and Distributing Packages with Setuptools - setuptools latest documentation]: https://setuptools.pypa.io/en/latest/setuptools.html
[Package Discovery and Namespace Packages - setuptools latest documentation]: https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
[Constructing namespaces — Invoke documentation]: https://docs.pyinvoke.org/en/latest/concepts/namespaces.html#nesting-collections
[`B101: assert_used`]: https://bandit.readthedocs.io/en/latest/plugins/b101_assert_used.html
[`assert (S101)`]: https://docs.astral.sh/ruff/rules/assert/
[Configuration — Bandit documentation]: https://bandit.readthedocs.io/en/latest/config.html#scanning-behavior

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "invokelint",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Yukihiko Shinoda <yuk.hik.future@gmail.com>",
    "keywords": "autoflake, bandit, black, build, coverage, dist, docformatter, doggy, flake8, invokelint, isort, mypy, pydocstyle, pylint, pytest, radon, ruff, semgrep, xenon",
    "author": null,
    "author_email": "Yukihiko Shinoda <yuk.hik.future@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6a/36/a6024ab5640ca38c25369d0c9a2594c2c941e8e4f50096af824206842afc/invokelint-0.10.0.tar.gz",
    "platform": null,
    "description": "# Invoke Lint\n\n[![Test](https://github.com/yukihiko-shinoda/invoke-lint/workflows/Test/badge.svg)](https://github.com/yukihiko-shinoda/invoke-lint/actions?query=workflow%3ATest)\n[![CodeQL](https://github.com/yukihiko-shinoda/invoke-lint/workflows/CodeQL/badge.svg)](https://github.com/yukihiko-shinoda/invoke-lint/actions?query=workflow%3ACodeQL)\n[![Test Coverage](https://api.codeclimate.com/v1/badges/935364d296051fb926c8/test_coverage)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint/test_coverage)\n[![Maintainability](https://api.codeclimate.com/v1/badges/935364d296051fb926c8/maintainability)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint/maintainability)\n[![Code Climate technical debt](https://img.shields.io/codeclimate/tech-debt/yukihiko-shinoda/invoke-lint)](https://codeclimate.com/github/yukihiko-shinoda/invoke-lint)\n[![Python versions](https://img.shields.io/pypi/pyversions/invokelint.svg)](https://pypi.org/project/invokelint)\n[![Twitter URL](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fgithub.com%2Fyukihiko-shinoda%2Finvoke-lint)](http://twitter.com/share?text=Invoke%20Lint&url=https://pypi.org/project/invokelint/&hashtags=python)\n\nInvokes Python dev tools at once.\n\n## Attention\n\n- The development status of this package is Beta now. It may not be able to keep backward compatibility. Be careful to use, especially for CI.\n- Currently, each commands require to run in project home directory.\n\n## Advantage\n\n1. Covers major development tools and they are optional to install\n1. Quick response for developer, slow but detail for CI\n1. Available to place commands into your selected namespace\n\n### 1. Covers major development tools and they are optional to install\n\nYou can choose which dev tool you'll install, this package doesn't force to install each of dev tools. It helps you to avoid conflicts or breaking your project's dependencies.\n\nSupporting tools:\n\nLinters:\n\n- [Xenon]\n- [Ruff]\n- [Bandit]\n- [dodgy]\n- [Flake8]\n- [pydocstyle]\n- [mypy]\n- [Pylint]\n- [Semgrep]\n\nFormatters:\n\n- [docformatter]\n- [isort]\n- [autoflake]\n- [Black]\n\nFor test and coverage:\n\n- [pytest]\n- [Coverage.py]\n\nPackage build:\n\n- [build]\n\n### 2. Quick response for developer, slow but detailed for CI\n\nThe commands for each kind of tasks are designed as unified into 2 main commands:\n\n- For developer: Runs only quick responsive dev tools at once\n- For CI (or final check): Runs slow but detailed responsive tools at once\n\n### 3. Available to place commands into your selected namespace\n\nThis doesn't pollute your comfortable namespaces of command line tools. Thanks to [Invoke], you can place commands into your selected namespace. (See: [Quickstart](#quickstart))\n\n## Representative commands\n\n(Note that the namespaces of following commands can be changed as you like. See: [Quickstart](#quickstart))\n\n### `inv style`\n\nFormats code by following tools at once:\n\n1. [docformatter]\n2. [isort]\n3. [autoflake]\n4. [Black]\n5. [Ruff]\n\n- `inv style --check` can only check.\n- `inv style --ruff` can leave Ruff warnings.\n\n### `inv lint`\n\nRuns following fast lints at once:\n\n1. [Xenon]\n2. [Ruff]\n3. [Bandit]\n4. [dodgy]\n5. [Flake8]\n6. [pydocstyle]\n\nThe format task ([described later](#inv-style)) also run before run above lints. You can skip them by `--skip-format` option.\n\n### `inv lint.deep`\n\nRuns following slow but detailed lints at once:\n\n1. [mypy]\n2. [Pylint]\n3. [Semgrep]\n\n### `inv radon`\n\nReports [radon] both code complexity and maintainability index.\n\n### `inv test`\n\nRuns fast tests (which is not marked `@pytest.mark.slow`) by [pytest].\n\nSee:\n\n- [How to mark test functions with attributes \u2014 pytest documentation]\n- [Working with custom markers \u2014 pytest documentation]\n\n### `inv test.cov`\n\nRuns all tests and report coverage by [pytest] and [Coverage.py].\n\nIt also can dump coverage as XML or HTML format.\n\n### `inv dist`\n\nBuilds source and wheel packages into `dist/` directory by [build].  \n(Currently, not support in Windows)\n\nSee:\n\n- [Building and Distributing Packages with Setuptools - setuptools latest documentation]\n- [Package Discovery and Namespace Packages - setuptools latest documentation]\n\n## Quickstart\n\n### 1. Install\n\nIt's better to use one of [dependency management tools] to resolve dependencies of many dev tools.\n\nFor example, in case when use [Pipenv], `Pipfile`:\n\n```toml\n[[source]]\nurl = \"https://pypi.org/simple\"\nverify_ssl = true\nname = \"pypi\"\n\n[dev-packages]\nautoflake = \"*\"\nbandit = {version = \"*\", markers=\"python_version >= '3.7'\"}\nblack = {version = \"*\", markers=\"python_version >= '3.7'\"}\nbuild = \"*\"\n# Hotfix for Pipenv's Bug:\n# - Pipenv should prioritize more cross-platform sys_platform condition between packages when lock\n#   \u00b7 Issue #4101 \u00b7 pypa/pipenv\n#   https://github.com/pypa/pipenv/issues/4101\ncolorama = \"*\"\n# Pipenv can't crawl coverage==3.5.3:\n# - Command: \"pipenv install --skip-lock\" fails \n#   since it tries to parse legacy package metadata and raise InstallError\n#   \u00b7 Issue #5595 \u00b7 pypa/pipenv\n#   https://github.com/pypa/pipenv/issues/5595#issuecomment-1454769781\ncoverage = \">=3.5.4\"\n# The dlint less than 0.14.0 limits max version of flake8.\ndlint = \">=0.14.0\"\ndocformatter = {extras = [\"tomli\"], version = \"*\"}\ndodgy = \"*\"\n# Since Pipenv can't lock for too much combinations to attempt lock:\n# pip._vendor.resolvelib.resolvers.ResolutionTooDeep: 2000000\n# The hacking depends flake8 ~=6.1.0 or ~=5.0.1 or ~=4.0.1.\nflake8 = {version = \"!=6.0.0,!=5.0.0,>=4.0.1\", markers=\"python_version >= '3.6'\"}\n# To use flake8 --radon-show-closures\nflake8-polyfill = \"*\"\n# Latest hacking depends on legacy version of flake8, and legacy hacking doesn't narrow flake8 version.\n# When unpin hacking, it has possibility to install too legacy version of hacking.\nhacking = {version = \">=5.0.0\", markers=\"python_version >= '3.8'\"}\ninvokelint = {version = \"*\", markers=\"python_version >= '3.7'\"}\nisort = \"*\"\nmypy = \"*\"\npydocstyle = {version = \"*\", markers=\"python_version >= '3.6'\"}\npylint = \"*\"\npytest = \"*\"\nradon = \"*\"\nruff = {version = \"*\", markers=\"python_version >= '3.7'\"}\nsemgrep = {version = \"*\", markers=\"python_version >= '3.6'\"}\ntomli = {version = \"*\", markers=\"python_version >= '3.6'\"}\nxenon = \"*\"\n```\n\nthen:\n\n```console\npipenv install --dev\npipenv shell\n```\n\n### 2. Implement\n\nCreate `tasks.py` in project directory:\n\n```python\n\"\"\"Tasks for maintaining the project.\n\nExecute 'invoke --list' for guidance on using Invoke\n\"\"\"\nfrom invoke import Collection\n\nfrom invokelint import dist, lint, path, style, test\n\nns = Collection()\nns.add_collection(dist)\nns.add_collection(lint)\nns.add_collection(path)\nns.add_collection(style)\nns.add_collection(test)\n```\n\nCommands may be explicitly place with a different name than they were originally given via a name kwarg (or the 2nd regular arg):\n\n```python\nns.add_collection(lint, 'namespace-you-wish')\n```\n\nSee: [Constructing namespaces \u2014 Invoke documentation]\n\n### 3. Check installation\n\n```console\ninv --list\n```\n\n### 4. Setup target package\n\nThis package reuses `setuptools` settings for package discovery for linting, formatting, and measuring coverage. You can check which package are discovered by `setuptools` and your project's settings, by following command:\n\n```console\n$ inv path\nSetuptools detected packages: ['invokelint', 'invokelint.path']\nRoot packages: ['invokelint']\nSetuptools detected Python modules: ['setup', 'tasks']\nExisting test packages: ['tests']\nPython file or directories to lint: ['invokelint', 'setup.py', 'tasks.py', 'tests']\nPython file or directories to lint excluding test packages: ['invokelint', 'setup.py', 'tasks.py']\n```\n\nIf result is not your expected, follow official documentation of `setuptools` to configure `pyproject.toml` (recommended), `setup.cfg`, or `setup.py`.\n\nSee: [Package Discovery and Namespace Packages - setuptools latest documentation]\n\n<!-- markdownlint-disable no-trailing-punctuation -->\n## How do I...\n<!-- markdownlint-enable no-trailing-punctuation -->\n\n### Suppress [`B101: assert_used`] in Bandit and [`assert (S101)`] in Ruff only in test files?\n\nSet below configuration in `pyproject.toml`:\n\n```toml\n[tool.bandit.assert_used]\nskips = [\"tests/*\"]\n\n[tool.ruff.lint.per-file-ignores]\n\"tests/*\" = [\"S101\"]\n```\n\nNote that invoke-lint executes [Bandit] with option `--configfile=pyproject.toml`, so upper configuration will be applied.\n\nSee: [Configuration \u2014 Bandit documentation]\n\n## Credits\n\nThis package was created with [Cookiecutter] and the [yukihiko-shinoda/cookiecutter-pypackage] project template.\n\n[Cookiecutter]: https://github.com/audreyr/cookiecutter\n[yukihiko-shinoda/cookiecutter-pypackage]: https://github.com/audreyr/cookiecutter-pypackage\n[Invoke]: https://pypi.org/project/invoke/\n[dependency management tools]: https://packaging.python.org/en/latest/tutorials/managing-dependencies/\n[Pipenv]: https://pypi.org/project/pipenv/\n[Ruff]: https://pypi.org/project/ruff/\n[Bandit]: https://pypi.org/project/bandit/\n[dodgy]: https://pypi.org/project/dodgy/\n[Flake8]: https://pypi.org/project/flake8/\n[pydocstyle]: https://pypi.org/project/pydocstyle/\n[Xenon]: https://pypi.org/project/xenon/\n[Pylint]: https://pypi.org/project/pylint/\n[mypy]: https://pypi.org/project/mypy/\n[Semgrep]: https://pypi.org/project/semgrep/\n[radon]: https://pypi.org/project/radon/\n[docformatter]: https://pypi.org/project/docformatter/\n[isort]: https://pypi.org/project/isort/\n[autoflake]: https://pypi.org/project/autoflake/\n[Black]: https://pypi.org/project/black/\n[pytest]: https://pypi.org/project/pytest/\n[How to mark test functions with attributes \u2014 pytest documentation]: https://docs.pytest.org/en/latest/how-to/mark.html\n[Working with custom markers \u2014 pytest documentation]: https://docs.pytest.org/en/latest/example/markers.html\n[Coverage.py]: https://pypi.org/project/coverage/\n[build]: https://pypi.org/project/build/\n[Building and Distributing Packages with Setuptools - setuptools latest documentation]: https://setuptools.pypa.io/en/latest/setuptools.html\n[Package Discovery and Namespace Packages - setuptools latest documentation]: https://setuptools.pypa.io/en/latest/userguide/package_discovery.html\n[Constructing namespaces \u2014 Invoke documentation]: https://docs.pyinvoke.org/en/latest/concepts/namespaces.html#nesting-collections\n[`B101: assert_used`]: https://bandit.readthedocs.io/en/latest/plugins/b101_assert_used.html\n[`assert (S101)`]: https://docs.astral.sh/ruff/rules/assert/\n[Configuration \u2014 Bandit documentation]: https://bandit.readthedocs.io/en/latest/config.html#scanning-behavior\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Yukihiko Shinoda  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Invokes Python dev tools at once.",
    "version": "0.10.0",
    "project_urls": {
        "homepage": "https://github.com/yukihiko-shinoda/invoke-lint",
        "repository": "https://github.com/yukihiko-shinoda/invoke-lint"
    },
    "split_keywords": [
        "autoflake",
        " bandit",
        " black",
        " build",
        " coverage",
        " dist",
        " docformatter",
        " doggy",
        " flake8",
        " invokelint",
        " isort",
        " mypy",
        " pydocstyle",
        " pylint",
        " pytest",
        " radon",
        " ruff",
        " semgrep",
        " xenon"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20297044ce7955c7392484323bd32733d6988cbef8d4c334889a239d286c7276",
                "md5": "a5bbedce279221d1478870b929648fd4",
                "sha256": "587292451ab613e1db8aa6615e45dee4f25ca0d3b13941388c5a40803794f729"
            },
            "downloads": -1,
            "filename": "invokelint-0.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a5bbedce279221d1478870b929648fd4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 16556,
            "upload_time": "2024-04-13T14:13:48",
            "upload_time_iso_8601": "2024-04-13T14:13:48.583311Z",
            "url": "https://files.pythonhosted.org/packages/20/29/7044ce7955c7392484323bd32733d6988cbef8d4c334889a239d286c7276/invokelint-0.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a36a6024ab5640ca38c25369d0c9a2594c2c941e8e4f50096af824206842afc",
                "md5": "7924667797cca8d3cc5afbab5bce1dd5",
                "sha256": "056b6e64e43eef0cf20cedac6f2bc59c438c3848410cab9ebd18aa81114ec161"
            },
            "downloads": -1,
            "filename": "invokelint-0.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7924667797cca8d3cc5afbab5bce1dd5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 24822,
            "upload_time": "2024-04-13T14:13:55",
            "upload_time_iso_8601": "2024-04-13T14:13:55.998310Z",
            "url": "https://files.pythonhosted.org/packages/6a/36/a6024ab5640ca38c25369d0c9a2594c2c941e8e4f50096af824206842afc/invokelint-0.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-13 14:13:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yukihiko-shinoda",
    "github_project": "invoke-lint",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "invokelint"
}
        
Elapsed time: 0.21661s