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
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "docstring_parser"
version = "0.17.0"
description = "Parse Python docstrings in reST, Google and Numpydoc format"
authors = [
{name="Marcin Kurczewski", email="dash@wind.garden"},
]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Environment :: Other Environment",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation :: Sphinx",
"Topic :: Text Processing :: Markup",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
[project.urls]
homepage = "https://github.com/rr-/docstring_parser"
repository = "https://github.com/rr-/docstring_parser"
changelog = "https://github.com/rr-/docstring_parser/blob/master/CHANGELOG.md"
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"pydoctor >= 25.4.0",
]
dev = [
"docstring_parser[test]",
"docstring_parser[docs]",
"pre-commit >= 2.16.0; python_version>='3.9'",
]
[tool.black]
line-length = 79
py38 = true
[tool.isort]
known_third_party = "docstring_parser"
multi_line_output = 3
include_trailing_comma = true
[tool.pylint.master]
jobs = 4
[tool.pylint.format]
max-line-length = 79
[tool.pylint.messages_control]
reports = "no"
disable = [
"import-error",
"duplicate-code",
"too-many-locals",
"too-many-lines",
"too-many-branches",
"too-many-statements",
"too-many-arguments",
"too-many-positional-arguments",
"too-few-public-methods",
]
|