-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.21 KB
/
setup.cfg
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
[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 = [email protected]
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
--cov docstring_to_markdown
--cov-fail-under=99
--cov-report term-missing:skip-covered
-p no:warnings
--flake8
-vv
[flake8]
max-line-length = 120
max-complexity = 15