-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.cfg
54 lines (51 loc) · 1.5 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
49
50
51
52
53
54
[metadata]
name = sphinx-click
summary = Sphinx extension that automatically documents click applications
description_file = README.rst
description_content_type = text/x-rst; charset=UTF-8
author = Stephen Finucane
author_email = [email protected]
url = https://github.com/click-contrib/sphinx-click
project_urls =
Bug Tracker = https://github.com/click-contrib/sphinx-click/issues
Documentation = https://sphinx-click.readthedocs.io/en/latest
Source Code = https://github.com/click-contrib/sphinx-click
license = MIT License
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Framework :: Sphinx :: Extension
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Documentation
Topic :: Documentation :: Sphinx
Topic :: Utilities
python_requires = >=3.8
keywords = sphinx click
[files]
packages =
sphinx_click
[flake8]
max-line-length = 88
ignore = E203,E501,E741,W503
[mypy]
# python_version = 3.9
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
show_column_numbers = true
show_error_context = true
ignore_missing_imports = true
check_untyped_defs = true
warn_unused_ignores = true
warn_return_any = true
strict_optional = true
exclude = (?x)(
docs/.* \
| tests/.*
)