File: setup.cfg

package info (click to toggle)
python-docstring-to-markdown 0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 228 kB
  • sloc: python: 1,761; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,123 bytes parent folder | download | duplicates (2)
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
[metadata]
name = docstring-to-markdown
description = On the fly conversion of Python docstrings to markdown
long_description = file: ./README.md
long_description_content_type = text/markdown
author = MichaƂ Krassowski
author_email = krassowski.michal+pypi@gmail.com
license =  LGPL-2.1-or-later
keywords =
    Docstring
    conversion
    markdown
license_file = LICENSE
classifiers =
    Intended Audience :: Developers
    License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
    Programming Language :: Python
    Topic :: Text Processing :: Markup
    Topic :: Documentation :: Sphinx
project_urls =
    Bug Tracker = https://github.com/python-lsp/docstring-to-markdown/issues
    Source Code = https://github.com/python-lsp/docstring-to-markdown
version = attr: docstring_to_markdown.__version__

[mypy]
warn_return_any = True
warn_unused_configs = True

[options]
packages = find:
python_requires = >=3.6

[options.package_data]
docstring-to-markdown = py.typed

[tool:pytest]
addopts =
    --pyargs tests
    -p no:warnings
    -vv

[flake8]
max-line-length = 120
max-complexity = 15