prospector 1.15.4a1__tar.gz → 1.16.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {prospector-1.15.4a1 → prospector-1.16.1}/PKG-INFO +18 -16
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/blender_combinations.yaml +6 -1
- {prospector-1.15.4a1 → prospector-1.16.1}/pyproject.toml +1 -1
- prospector-1.16.1/setup.py +80 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/LICENSE +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/README.rst +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/__main__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/autodetect.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/blender.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/compat.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/config/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/config/configuration.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/config/datatype.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/encoding.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/exceptions.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/finder.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/base.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/base_summary.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/emacs.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/grouped.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/json.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/pylint.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/pylint_parseable.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/text.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/vscode.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/xunit.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/formatters/yaml.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/identify.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/message.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/pathutils.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/postfilter.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/exceptions.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profile.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/default.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/doc_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/flake8.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/full_pep8.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/member_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_doc_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_member_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_pep8.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_test_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_high.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_low.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_medium.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_none.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_veryhigh.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_verylow.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/test_warnings.yaml +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/run.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/suppression.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/bandit/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/base.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/dodgy/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/exceptions.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/mccabe/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/mypy/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/profile_validator/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pycodestyle/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pydocstyle/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pyflakes/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pylint/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pylint/collector.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pylint/linter.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pyright/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/pyroma/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/ruff/__init__.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/utils.py +0 -0
- {prospector-1.15.4a1 → prospector-1.16.1}/prospector/tools/vulture/__init__.py +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: prospector
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.16.1
|
|
4
4
|
Summary: Prospector is a tool to analyse Python code by aggregating the result of other tools.
|
|
5
|
+
Home-page: http://prospector.readthedocs.io
|
|
5
6
|
License: GPLv2+
|
|
6
7
|
Keywords: pylint,prospector,static code analysis
|
|
7
8
|
Author: Carl Crowder
|
|
@@ -18,23 +19,25 @@ Classifier: Operating System :: Unix
|
|
|
18
19
|
Classifier: Programming Language :: Python :: 3
|
|
19
20
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
21
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
24
27
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
25
|
-
Provides-Extra:
|
|
26
|
-
Provides-Extra:
|
|
27
|
-
Provides-Extra:
|
|
28
|
-
Provides-Extra:
|
|
29
|
-
Provides-Extra:
|
|
30
|
-
Provides-Extra:
|
|
31
|
-
Provides-Extra:
|
|
28
|
+
Provides-Extra: with_bandit
|
|
29
|
+
Provides-Extra: with_everything
|
|
30
|
+
Provides-Extra: with_mypy
|
|
31
|
+
Provides-Extra: with_pyright
|
|
32
|
+
Provides-Extra: with_pyroma
|
|
33
|
+
Provides-Extra: with_ruff
|
|
34
|
+
Provides-Extra: with_vulture
|
|
32
35
|
Requires-Dist: GitPython (>=3.1.27,<4.0.0)
|
|
33
36
|
Requires-Dist: PyYAML
|
|
34
|
-
Requires-Dist: bandit (>=1.5.1)
|
|
37
|
+
Requires-Dist: bandit (>=1.5.1); extra == "with_bandit" or extra == "with_everything"
|
|
35
38
|
Requires-Dist: dodgy (>=0.2.1,<0.3.0)
|
|
36
39
|
Requires-Dist: mccabe (>=0.7.0,<0.8.0)
|
|
37
|
-
Requires-Dist: mypy (>=0.600)
|
|
40
|
+
Requires-Dist: mypy (>=0.600); extra == "with_mypy" or extra == "with_everything"
|
|
38
41
|
Requires-Dist: packaging
|
|
39
42
|
Requires-Dist: pep8-naming (>=0.3.3,<=0.10.0)
|
|
40
43
|
Requires-Dist: pycodestyle (>=2.9.0)
|
|
@@ -43,14 +46,13 @@ Requires-Dist: pyflakes (>=2.2.0)
|
|
|
43
46
|
Requires-Dist: pylint (>=3.0)
|
|
44
47
|
Requires-Dist: pylint-celery (==0.3)
|
|
45
48
|
Requires-Dist: pylint-django (>=2.6.1)
|
|
46
|
-
Requires-Dist: pyright (>=1.1.3)
|
|
47
|
-
Requires-Dist: pyroma (>=2.4)
|
|
49
|
+
Requires-Dist: pyright (>=1.1.3); extra == "with_pyright" or extra == "with_everything"
|
|
50
|
+
Requires-Dist: pyroma (>=2.4); extra == "with_pyroma" or extra == "with_everything"
|
|
48
51
|
Requires-Dist: requirements-detector (>=1.3.2)
|
|
49
|
-
Requires-Dist: ruff
|
|
52
|
+
Requires-Dist: ruff; extra == "with_ruff" or extra == "with_everything"
|
|
50
53
|
Requires-Dist: setoptconf-tmp (>=0.3.1,<0.4.0)
|
|
51
54
|
Requires-Dist: toml (>=0.10.2,<0.11.0)
|
|
52
|
-
Requires-Dist: vulture (>=1.5)
|
|
53
|
-
Project-URL: Homepage, http://prospector.readthedocs.io
|
|
55
|
+
Requires-Dist: vulture (>=1.5); extra == "with_vulture" or extra == "with_everything"
|
|
54
56
|
Project-URL: Repository, https://github.com/PyCQA/prospector
|
|
55
57
|
Description-Content-Type: text/x-rst
|
|
56
58
|
|
|
@@ -311,7 +311,7 @@ combinations:
|
|
|
311
311
|
- # Do not catch blind exception: `BaseException`
|
|
312
312
|
- pylint: broad-except
|
|
313
313
|
- pylint: W0703
|
|
314
|
-
- ruff:
|
|
314
|
+
- ruff: BLE001
|
|
315
315
|
|
|
316
316
|
- # Create your own exception
|
|
317
317
|
- pylint: broad-exception-raised
|
|
@@ -438,6 +438,11 @@ combinations:
|
|
|
438
438
|
- ruff: PLW1510
|
|
439
439
|
- bandit: B603
|
|
440
440
|
|
|
441
|
+
- # Unused argument
|
|
442
|
+
- pylint: unused-argument
|
|
443
|
+
- pylint: W0613
|
|
444
|
+
- ruff: ARG001
|
|
445
|
+
|
|
441
446
|
- # Private member accessed:
|
|
442
447
|
- pylint: protected-access
|
|
443
448
|
- pylint: W0212
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "prospector"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.16.1"
|
|
4
4
|
description = "Prospector is a tool to analyse Python code by aggregating the result of other tools."
|
|
5
5
|
authors = ["Carl Crowder <git@carlcrowder.com>"]
|
|
6
6
|
maintainers = ["Carl Crowder <git@carlcrowder.com>",
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
|
|
4
|
+
packages = \
|
|
5
|
+
['prospector',
|
|
6
|
+
'prospector.config',
|
|
7
|
+
'prospector.formatters',
|
|
8
|
+
'prospector.profiles',
|
|
9
|
+
'prospector.tools',
|
|
10
|
+
'prospector.tools.bandit',
|
|
11
|
+
'prospector.tools.dodgy',
|
|
12
|
+
'prospector.tools.mccabe',
|
|
13
|
+
'prospector.tools.mypy',
|
|
14
|
+
'prospector.tools.profile_validator',
|
|
15
|
+
'prospector.tools.pycodestyle',
|
|
16
|
+
'prospector.tools.pydocstyle',
|
|
17
|
+
'prospector.tools.pyflakes',
|
|
18
|
+
'prospector.tools.pylint',
|
|
19
|
+
'prospector.tools.pyright',
|
|
20
|
+
'prospector.tools.pyroma',
|
|
21
|
+
'prospector.tools.ruff',
|
|
22
|
+
'prospector.tools.vulture']
|
|
23
|
+
|
|
24
|
+
package_data = \
|
|
25
|
+
{'': ['*'], 'prospector.profiles': ['profiles/*']}
|
|
26
|
+
|
|
27
|
+
install_requires = \
|
|
28
|
+
['GitPython>=3.1.27,<4.0.0',
|
|
29
|
+
'PyYAML',
|
|
30
|
+
'dodgy>=0.2.1,<0.3.0',
|
|
31
|
+
'mccabe>=0.7.0,<0.8.0',
|
|
32
|
+
'packaging',
|
|
33
|
+
'pep8-naming>=0.3.3,<=0.10.0',
|
|
34
|
+
'pycodestyle>=2.9.0',
|
|
35
|
+
'pydocstyle>=2.0.0',
|
|
36
|
+
'pyflakes>=2.2.0',
|
|
37
|
+
'pylint-celery==0.3',
|
|
38
|
+
'pylint-django>=2.6.1',
|
|
39
|
+
'pylint>=3.0',
|
|
40
|
+
'requirements-detector>=1.3.2',
|
|
41
|
+
'setoptconf-tmp>=0.3.1,<0.4.0',
|
|
42
|
+
'toml>=0.10.2,<0.11.0']
|
|
43
|
+
|
|
44
|
+
extras_require = \
|
|
45
|
+
{'with_bandit': ['bandit>=1.5.1'],
|
|
46
|
+
'with_everything': ['bandit>=1.5.1',
|
|
47
|
+
'vulture>=1.5',
|
|
48
|
+
'mypy>=0.600',
|
|
49
|
+
'pyright>=1.1.3',
|
|
50
|
+
'pyroma>=2.4',
|
|
51
|
+
'ruff'],
|
|
52
|
+
'with_mypy': ['mypy>=0.600'],
|
|
53
|
+
'with_pyright': ['pyright>=1.1.3'],
|
|
54
|
+
'with_pyroma': ['pyroma>=2.4'],
|
|
55
|
+
'with_ruff': ['ruff'],
|
|
56
|
+
'with_vulture': ['vulture>=1.5']}
|
|
57
|
+
|
|
58
|
+
entry_points = \
|
|
59
|
+
{'console_scripts': ['prospector = prospector.run:main']}
|
|
60
|
+
|
|
61
|
+
setup_kwargs = {
|
|
62
|
+
'name': 'prospector',
|
|
63
|
+
'version': '1.16.1',
|
|
64
|
+
'description': 'Prospector is a tool to analyse Python code by aggregating the result of other tools.',
|
|
65
|
+
'long_description': 'prospector\n==========\n\n.. image:: https://img.shields.io/pypi/v/prospector.svg\n :target: https://pypi.python.org/pypi/prospector\n :alt: Latest Version of Prospector\n.. image:: https://github.com/PyCQA/prospector/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/PyCQA/prospector/actions/workflows/tests.yml\n :alt: Build Status\n.. image:: https://img.shields.io/coveralls/PyCQA/prospector.svg?style=flat\n :target: https://coveralls.io/r/PyCQA/prospector\n :alt: Test Coverage\n.. image:: https://readthedocs.org/projects/prospector/badge/?version=latest\n :target: https://prospector.readthedocs.io/\n :alt: Documentation\n\n\nAbout\n-----\n\nProspector is a tool to analyse Python code and output information about\nerrors, potential problems, convention violations and complexity.\n\nIt brings together the functionality of other Python analysis tools such as\n`Pylint <https://docs.pylint.org/>`_,\n`pycodestyle <https://pycodestyle.pycqa.org/>`_,\nand `McCabe complexity <https://pypi.python.org/pypi/mccabe>`_.\nSee the `Supported Tools <https://prospector.readthedocs.io/en/latest/supported_tools.html>`_\ndocumentation section for a complete list.\n\nThe primary aim of Prospector is to be useful \'out of the box\'. A common complaint of other\nPython analysis tools is that it takes a long time to filter through which errors are relevant\nor interesting to your own coding style. Prospector provides some default profiles, which\nhopefully will provide a good starting point and will be useful straight away, and adapts\nthe output depending on the libraries your project uses.\n\nInstallation\n------------\n\nProspector can be installed from PyPI using ``pip`` by running the following command::\n\n pip install prospector\n\nOptional dependencies for Prospector, such as ``pyroma`` can also be installed by running::\n\n pip install prospector[with_pyroma]\n\nSome shells (such as ``Zsh``, the default shell of macOS Catalina) require brackets to be escaped::\n\n pip install prospector\\[with_pyroma\\]\n\nFor a list of all of the optional dependencies, see the optional extras section on the ReadTheDocs\npage on `Supported Tools Extras <https://prospector.readthedocs.io/en/latest/supported_tools.html#optional-extras>`_.\n\nFor local development, `poetry <https://python-poetry.org/>`_ is used. Check out the code, then run::\n\n poetry install\n\nAnd for extras::\n\n poetry install -E with_everything\n\nFor more detailed information on installing the tool, see the\n`installation section <https://prospector.readthedocs.io/en/latest/#installation>`_ of the tool\'s main page\non ReadTheDocs.\n\nDocumentation\n-------------\n\nFull `documentation is available at ReadTheDocs <https://prospector.readthedocs.io>`_.\n\nUsage\n-----\n\nSimply run prospector from the root of your project::\n\n prospector\n\nThis will output a list of messages pointing out potential problems or errors, for example::\n\n prospector.tools.base (prospector/tools/base.py):\n L5:0 ToolBase: pylint - R0922\n Abstract class is only referenced 1 times\n\nOptions\n```````\n\nRun ``prospector --help`` for a full list of options and their effects.\n\nOutput Format\n~~~~~~~~~~~~~\n\nThe default output format of ``prospector`` is designed to be human readable. For parsing\n(for example, for reporting), you can use the ``--output-format json`` flag to get JSON-formatted\noutput.\n\nProfiles\n~~~~~~~~\n\nProspector is configurable using "profiles". These are composable YAML files with directives to\ndisable or enable tools or messages. For more information, read\n`the documentation about profiles <https://prospector.readthedocs.io/en/latest/profiles.html>`_.\n\nIf your code uses frameworks and libraries\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOften tools such as pylint find errors in code which is not an error, for example due to attributes of classes being\ncreated at run time by a library or framework used by your project.\nFor example, by default, pylint will generate an error for Django models when accessing ``objects``, as the\n``objects`` attribute is not part of the ``Model`` class definition.\n\nProspector mitigates this by providing an understanding of these frameworks to the underlying tools.\n\nProspector will try to intuit which libraries your project uses by\n`detecting dependencies <https://github.com/landscapeio/requirements-detector>`_ and automatically turning on\nsupport for the requisite libraries. You can see which adaptors were run in the metadata section of the report.\n\nIf Prospector does not correctly detect your project\'s dependencies, you can specify them manually from the commandline::\n\n prospector --uses django celery\n\nAdditionally, if Prospector is automatically detecting a library that you do not in fact use, you can turn\noff autodetection completely::\n\n prospector --no-autodetect\n\nNote that as far as possible, these adaptors have been written as plugins or augmentations for the underlying\ntools so that they can be used without requiring Prospector. For example, the Django support is available as a pylint plugin.\n\nStrictness\n~~~~~~~~~~\n\nProspector has a configurable \'strictness\' level which will determine how harshly it searches for errors::\n\n prospector --strictness high\n\nPossible values are ``verylow``, ``low``, ``medium``, ``high``, ``veryhigh``.\n\nProspector does not include documentation warnings by default, but you can turn\nthis on using the ``--doc-warnings`` flag.\n\npre-commit\n----------\n\nIf you\'d like Prospector to be run automatically when making changes to files in your Git\nrepository, you can install `pre-commit <https://pre-commit.com/>`_ and add the following\ntext to your repositories\' ``.pre-commit-config.yaml``::\n\n repos:\n - repo: https://github.com/PyCQA/prospector\n rev: 1.10.0 # The version of Prospector to use, if not \'master\' for latest\n hooks:\n - id: prospector\n\nThis only installs base prospector - if you also use optional tools, for example bandit and/or mypy, then you can add\nthem to the hook configuration like so::\n\n repos:\n - repo: https://github.com/PyCQA/prospector\n rev: 1.10.0\n hooks:\n - id: prospector\n additional_dependencies:\n - ".[with_mypy,with_bandit]"\n - args: [\n \'--with-tool=mypy\',\n \'--with-tool=bandit\',\n ]\n\nAdditional dependencies can be `individually configured <https://prospector.landscape.io/en/master/profiles.html#individual-configuration-options>`_ in your `prospector.yml` file ::\n\n # https://bandit.readthedocs.io/en/latest/config.html\n bandit:\n options:\n skips:\n - B201\n - B601\n - B610\n - B611\n - B703\n\n # https://mypy.readthedocs.io/en/stable/command_line.html\n mypy:\n options:\n ignore-missing-imports: true\n\nFor prospector options which affect display only - those which are not configurable using a profile - these can be\nadded as command line arguments to the hook. For example::\n\n repos:\n - repo: https://github.com/PyCQA/prospector\n rev: 1.10.0\n hooks:\n - id: prospector\n additional_dependencies:\n - ".[with_mypy,with_bandit]"\n args:\n - --with-tool=mypy\n - --with-tool=bandit\n - --summary-only\n - --zero-exit\n\n\n\nLicense\n-------\n\nProspector is available under the GPLv2 License.\n',
|
|
66
|
+
'author': 'Carl Crowder',
|
|
67
|
+
'author_email': 'git@carlcrowder.com',
|
|
68
|
+
'maintainer': 'Carl Crowder',
|
|
69
|
+
'maintainer_email': 'git@carlcrowder.com',
|
|
70
|
+
'url': 'http://prospector.readthedocs.io',
|
|
71
|
+
'packages': packages,
|
|
72
|
+
'package_data': package_data,
|
|
73
|
+
'install_requires': install_requires,
|
|
74
|
+
'extras_require': extras_require,
|
|
75
|
+
'entry_points': entry_points,
|
|
76
|
+
'python_requires': '>=3.9,<4.0',
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
setup(**setup_kwargs)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_member_warnings.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/no_test_warnings.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_medium.yaml
RENAMED
|
File without changes
|
|
File without changes
|
{prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_veryhigh.yaml
RENAMED
|
File without changes
|
{prospector-1.15.4a1 → prospector-1.16.1}/prospector/profiles/profiles/strictness_verylow.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|