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
|
# 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.12.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
mypy_version: "0.931"
on_conda_forge: true
conda_channels:
- conda-forge
# Versions to run tests for
python_versions:
3.6:
matrix_exclude:
sphinx:
- 5.0
- 5.1
- 5.2
- 5.3
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
3.7:
matrix_exclude:
sphinx:
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
3.8:
matrix_exclude:
sphinx:
- 7.2
3.9:
"3.10":
"3.11":
"3.12":
3.13-dev:
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
pypy36:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 5.0
- 5.1
- 5.2
- 5.3
- 6.0
- 6.1
- 6.2
- 7.0
- 7.1
- 7.2
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
pypy38:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
- 7.2
pypy39:
matrix_exclude:
sphinx:
- 3.4
- 3.5
- 4.0
- 4.1
- 4.2
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
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
# - latest
|