2017-10-21 14:19:28 +01:00
|
|
|
[metadata]
|
|
|
|
license_file = LICENSE
|
|
|
|
|
2008-03-18 19:37:05 +00:00
|
|
|
[egg_info]
|
2015-03-14 16:46:24 +09:00
|
|
|
tag_build = .dev
|
2008-03-18 19:37:05 +00:00
|
|
|
tag_date = true
|
|
|
|
|
2017-10-21 14:19:28 +01:00
|
|
|
[bdist_wheel]
|
|
|
|
universal = 1
|
|
|
|
|
2008-03-18 19:37:05 +00:00
|
|
|
[aliases]
|
2017-04-02 18:58:22 +09:00
|
|
|
release = egg_info -Db ''
|
2013-02-05 09:19:52 +01:00
|
|
|
upload = upload --sign --identity=36580288
|
2008-03-18 19:37:05 +00:00
|
|
|
|
2017-10-21 14:19:28 +01:00
|
|
|
[build_sphinx]
|
|
|
|
warning-is-error = 1
|
|
|
|
|
2008-08-08 10:54:00 +00:00
|
|
|
[extract_messages]
|
|
|
|
mapping_file = babel.cfg
|
|
|
|
output_file = sphinx/locale/sphinx.pot
|
2017-06-25 17:35:42 +09:00
|
|
|
keywords = _ __ l_ lazy_gettext
|
2008-08-08 10:54:00 +00:00
|
|
|
|
|
|
|
[update_catalog]
|
|
|
|
input_file = sphinx/locale/sphinx.pot
|
|
|
|
domain = sphinx
|
|
|
|
output_dir = sphinx/locale/
|
|
|
|
|
|
|
|
[compile_catalog]
|
|
|
|
domain = sphinx
|
|
|
|
directory = sphinx/locale/
|
2014-10-10 00:01:57 +09:00
|
|
|
|
2015-03-07 15:45:43 +09:00
|
|
|
[flake8]
|
2016-12-24 21:03:41 +09:00
|
|
|
max-line-length = 95
|
2018-01-28 01:52:16 +09:00
|
|
|
ignore = E116,E241,E251,E741,I101
|
2018-03-01 16:21:20 +03:00
|
|
|
exclude = .git,.tox,.venv,tests/*,build/*,doc/_build/*,sphinx/search/*,doc/ext/example*.py
|
2018-01-28 01:52:16 +09:00
|
|
|
application-import-names = sphinx
|
|
|
|
import-order-style = smarkets
|
2017-02-24 13:39:51 -05:00
|
|
|
|
2018-01-26 09:41:50 +00:00
|
|
|
[flake8:local-plugins]
|
|
|
|
extension =
|
|
|
|
X101 = utils.checks:sphinx_has_header
|
2018-01-28 15:20:50 +09:00
|
|
|
paths =
|
|
|
|
.
|
2018-01-26 09:41:50 +00:00
|
|
|
|
2017-10-02 19:23:59 +01:00
|
|
|
[mypy]
|
|
|
|
python_version = 2.7
|
2017-10-03 10:53:06 +01:00
|
|
|
show_column_numbers = True
|
|
|
|
show_error_context = True
|
2017-10-02 19:23:59 +01:00
|
|
|
ignore_missing_imports = True
|
|
|
|
follow_imports = skip
|
|
|
|
incremental = True
|
|
|
|
check_untyped_defs = True
|
|
|
|
warn_unused_ignores = True
|
2017-10-21 15:52:46 +01:00
|
|
|
|
2018-01-06 13:22:47 +09:00
|
|
|
[tool:pytest]
|
|
|
|
filterwarnings =
|
|
|
|
ignore::DeprecationWarning:docutils.io
|
|
|
|
|
2017-10-21 15:52:46 +01:00
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
|
|
|
source = sphinx
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
exclude_lines =
|
|
|
|
# Have to re-enable the standard pragma
|
|
|
|
pragma: no cover
|
|
|
|
# Don't complain if tests don't hit defensive assertion code:
|
|
|
|
raise NotImplementedError
|
|
|
|
# Don't complain if non-runnable code isn't run:
|
|
|
|
if __name__ == .__main__.:
|
|
|
|
ignore_errors = True
|