-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
91 lines (82 loc) · 2.36 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
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
[metadata]
name = sphinxcontrib-svgbob
version = attr: sphinxcontrib.svgbob.__version__
author = Martin Larralde
author_email = [email protected]
home_page = https://github.com/sphinx-contrib/svgbob
description = A Sphinx extension to convert ASCII diagrams to SVGs with Svgbob.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = COPYING
platform = any
keywords = sphinx, documentation, svg, diagram, ascii
classifiers =
Development Status :: 4 - Beta
Framework :: Sphinx :: Extension
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
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
Programming Language :: Python :: 3.12
Programming Language :: Rust
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Documentation
Topic :: Text Processing
Typing :: Typed
project_urls =
Bug Tracker = https://github.com/sphinx-contrib/svgbob/issues
Changelog = https://github.com/sphinx-contrib/svgbob/blob/master/CHANGELOG.md
[options]
zip_safe = false
include_package_data = true
python_requires = >=3.6
packages = sphinxcontrib.svgbob
test_suite = tests
setup_requires =
setuptools >=46.4
setuptools-rust >=0.12
wheel
install_requires =
sphinx
[options.package_data]
sphinxcontrib.svgbob = py.typed
[sdist]
formats = gztar
[coverage:run]
source = sphinxcontrib
[coverage:report]
show_missing = true
exclude_lines =
pragma: no cover
if False
[green]
file-pattern = test_*.py
verbose = 2
no-skip-report = true
quiet-stdout = true
run-coverage = true
[pydocstyle]
match-dir = (?!tests)(?!resources)(?!docs)[^\.].*
match = (?!test)(?!setup)[^\._].*\.py
inherit = false
ignore = D200, D203, D213, D406, D407 # Google conventions
[flake8]
max-line-length = 99
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[mypy]
disallow_any_decorated = true
disallow_any_generics = true
disallow_any_unimported = false
disallow_subclassing_any = false
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_return_any = true