1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
[tool.poetry]
name = "prospector"
version = "1.10.3"
description = "Prospector is a tool to analyse Python code by aggregating the result of other tools."
authors = ["Carl Crowder <git@carlcrowder.com>"]
maintainers = ["Carl Crowder <git@carlcrowder.com>",
"Carlos Coelho <carlospecter@gmail.com>",
"Pierre Sassoulas <pierre.sassoulas@gmail.com>"]
readme = "README.rst"
homepage = "http://prospector.readthedocs.io"
repository = "https://github.com/PyCQA/prospector"
keywords = ["pylint", "prospector", "static code analysis"]
license = "GPLv2+"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
]
packages = [
{ include = "prospector/"}
]
include = [
"prospector/blender_combinations.yaml",
"prospector/profiles/profiles/*.yaml",
]
[tool.poetry.scripts]
prospector = 'prospector.run:main'
[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
pylint = ">=2.8.3"
pylint-celery = "0.3"
pylint-django = "~2.5"
pylint-plugin-utils = "~0.7"
pylint-flask = "0.6"
requirements-detector = ">=1.2.0"
PyYAML = "*"
mccabe = "^0.7.0"
flake8 = "<6.0.0"
pyflakes = ">=2.2.0,<3.*"
pycodestyle = ">=2.9.0"
pep8-naming = ">=0.3.3,<=0.10.0"
pydocstyle = ">=2.0.0"
dodgy = "^0.2.1"
setoptconf-tmp = "^0.3.1"
GitPython = "^3.1.27"
packaging = "*"
bandit = {version = ">=1.5.1", optional = true}
vulture = {version = ">=1.5", optional = true}
mypy = {version = ">=0.600", optional = true}
pyright = {version = ">=1.1.3", optional = true}
pyroma = {version = ">=2.4", optional = true}
[tool.poetry.extras]
with_bandit = ["bandit"]
with_mypy = ["mypy"]
with_pyright = ["pyright"]
with_pyroma = ["pyroma"]
with_vulture = ["vulture"]
with_everything = ["bandit", "mypy", "pyright", "pyroma", "vulture"]
[tool.poetry.dev-dependencies]
coveralls = "^3.3.1"
pytest = "^7.2.0"
pytest-benchmark = "^4.0.0"
pytest-cov = "^4.0.0"
tzlocal = "^4.2"
coverage = "^6.5"
pre-commit = "^2.20.0"
tox = "^3.27.1"
twine = "^4.0.2"
types-PyYAML = "^6.0.4"
types-setuptools = "^57.4.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
exclude = '''
/(
tests/
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
|