forked from domdfcoding/enum_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo_helper.yml
113 lines (100 loc) · 2.32 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
106
107
108
109
110
111
112
113
# Configuration for 'repo_helper' (https://github.com/domdfcoding/repo_helper)
---
modname: enum_tools
copyright_years: "2020-2022"
author: "Dominic Davis-Foster"
email: "[email protected]"
version: "0.9.0.post1"
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
mypy_version: "0.931"
conda_channels:
- conda-forge
# Versions to run tests for
python_versions:
3.6:
3.7:
3.8:
3.9:
"3.10":
3.11-dev:
pypy36:
matrix_exclude:
sphinx:
- 3.2
- 3.3
- 3.4
- 3.5
pypy37:
matrix_exclude:
sphinx:
- 3.2
- 3.3
- 3.4
- 3.5
pypy38:
matrix_exclude:
sphinx:
- 3.2
- 3.3
- 3.4
- 3.5
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.2.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
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.2
- 3.3
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- latest