-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepo_helper.yml
105 lines (91 loc) · 2.34 KB
/
repo_helper.yml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Configuration for 'repo_helper' (https://github.com/domdfcoding/repo_helper)
---
modname: 'formate'
copyright_years: '2020-2022'
author: 'Dominic Davis-Foster'
email: '[email protected]'
username: 'python-formate'
assignee: 'domdfcoding'
version: '0.7.0'
license: 'MIT'
short_desc: 'Python formatting mate.'
primary_conda_channel: "domdfcoding"
enable_conda: true
use_whey: true
min_coverage: 95
sphinx_html_theme: furo
preserve_custom_theme: true
docs_fail_on_warning: true
conda_channels:
- conda-forge
python_versions:
'3.6':
matrix_exclude:
click:
- 8.1
'3.7':
'3.8':
'3.9':
'3.10':
'3.11':
'3.12':
3.13-dev:
pypy36:
matrix_exclude:
click:
- 8.1
pypy37:
pypy38:
pypy39:
keywords:
- formatting
- linting
classifiers:
- "Development Status :: 4 - Beta"
- "Intended Audience :: Developers"
- 'Environment :: Console'
entry_points:
formate_hooks:
- "reformat-generics=formate.reformat_generics:reformat_generics"
- "dynamic_quotes=formate.dynamic_quotes:dynamic_quotes"
- "noqa_reformat=formate.mini_hooks:noqa_reformat"
- "squish_stubs=formate.mini_hooks:squish_stubs"
- "ellipsis_reformat=formate.ellipses:ellipsis_reformat"
- "collections-import-rewrite=formate.imports:rewrite_collections_abc_imports"
- "isort=formate:isort_hook"
- "yapf=formate:yapf_hook"
console_scripts:
- "formate=formate.__main__:main"
extra_sphinx_extensions:
- attr_utils.autoattrs
- sphinx_click
- sphinx_toolbox.pre_commit
- sphinx_toolbox.more_autosummary.column_widths
- sphinx_favicon
- sphinx_toolbox_experimental.changelog
- sphinx_toolbox_experimental.missing_xref
- local_extension
sphinx_conf_epilogue:
- "\tfrom sphinx_toolbox.latex import replace_unknown_unicode"
- "\tapp.connect('build-finished', replace_unknown_unicode)"
- ''
- html_logo = "../formate.png"
- latex_logo = "formate.png"
- nitpicky = True
- ignore_missing_xrefs = ["asttokens.*"]
- changelog_sections_numbered = False
- needspace_amount = r"5\baselineskip"
- 'favicons = [{"rel": "icon", "href": "https://python-formate.github.io/assets/formate.ico", "sizes": "48x48", "type": "image/vnd.microsoft.icon"}]'
imgbot_ignore:
- "formate.*"
mypy_deps:
- types-attrs>=0.1.0
exclude_files:
- contributing
mypy_plugins:
- attr_utils.mypy_plugin
third_party_version_matrix:
click:
- 7
- 8.0
- 8.1