-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrepo_helper.yml
More file actions
209 lines (197 loc) · 3.33 KB
/
repo_helper.yml
File metadata and controls
209 lines (197 loc) · 3.33 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# Configuration for 'repo_helper' (https://github.com/domdfcoding/repo_helper)
---
modname: enum_tools
copyright_years: "2020-2022"
author: "Dominic Davis-Foster"
email: "dominic@davis-foster.co.uk"
version: "0.13.0"
username: "domdfcoding"
license: 'LGPLv3+'
short_desc: "Tools to expand Python's enum module."
use_whey: true
tox_testenv_extras: all
standalone_contrib_guide: true
min_coverage: 86
docs_fail_on_warning: true
on_conda_forge: true
enable_conda: false
# Versions to run tests for
python_versions:
3.7:
matrix_exclude:
sphinx:
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- latest
3.8:
matrix_exclude:
sphinx:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- latest
3.9:
matrix_exclude:
sphinx:
- 8.0
- 8.1
- 8.2
"3.10":
matrix_exclude:
sphinx:
- 8.2
"3.11":
"3.12":
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
"3.13":
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 5.0
- 5.1
- 5.2
- 5.3
- 6.0
- 6.1
pypy37:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- latest
pypy38:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- latest
pypy39:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 8.0
- 8.1
- 8.2
- latest
manifest_additional:
- recursive-include enum_tools/ requirements.txt
- recursive-exclude tests/ *
classifiers:
- 'Development Status :: 4 - Beta'
- 'Intended Audience :: Developers'
- 'Programming Language :: Python'
- 'Topic :: Software Development :: Libraries :: Python Modules'
- "Framework :: Sphinx :: Extension"
- "Topic :: Documentation"
- 'Topic :: Documentation :: Sphinx'
- 'Topic :: Software Development :: Documentation'
- "Topic :: Utilities"
keywords:
- enum
- documentation
- sphinx
- sphinx-extension
extras_require:
sphinx:
- sphinx>=3.4.0
- sphinx-toolbox>=2.16.0
- sphinx-jinja2-compat>=0.1.1
extra_sphinx_extensions:
- enum_tools.autoenum
- sphinx_toolbox_experimental.needspace
- sphinx_toolbox_experimental.autosummary_widths
- sphinx_toolbox_experimental.succinct_seealso
- sphinx_toolbox_experimental.missing_xref
tox_unmanaged:
- testenv
- fixups
sphinx_conf_epilogue:
- html_logo = "../enum_tools.png"
- autosummary_widths_builders = ["latex"]
- nitpicky = True
- needspace_amount = "1\\baselineskip"
- ignore_missing_xrefs = ["^sphinx.ext.autodoc.(Class|Attribute)?Documenter$", "^enum.EnumMeta$", "^docutils.nodes.Element$", "^sphinx.domains"]
- from typing import Type
- import enum_tools.autoenum
- from sphinx.ext.autodoc.directive import DocumenterBridge
- enum_tools.autoenum.DocumenterBridge = DocumenterBridge
- enum_tools.autoenum.Type = Type
preserve_custom_theme: true
third_party_version_matrix:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 5.0
- 5.1
- 5.2
- 5.3
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
# - latest