-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
repo_helper.yml
95 lines (83 loc) · 1.75 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
# Configuration for 'repo_helper' (https://github.com/domdfcoding/repo_helper)
---
modname: flake8-dunder-all
copyright_years: "2020-2022"
author: "Dominic Davis-Foster"
email: "dominic@davis-foster.co.uk"
version: "0.4.1"
username: "python-formate"
assignee: "domdfcoding"
license: 'MIT'
short_desc: "A Flake8 plugin and pre-commit hook which checks to ensure modules have defined '__all__'."
primary_conda_channel: "domdfcoding"
conda_channels:
- conda-forge
use_whey: True
sphinx_html_theme: furo
min_coverage: 100
# Versions to run tests for
python_versions:
'3.6':
matrix_exclude:
flake8:
- 6
- 7
'3.7':
matrix_exclude:
flake8:
- 6
- 7
'3.8':
'3.9':
'3.10':
'3.11':
'3.12':
matrix_exclude:
flake8:
- 4
3.13-dev:
matrix_exclude:
flake8:
- 4
pypy36:
matrix_exclude:
flake8:
- 6
- 7
pypy37:
matrix_exclude:
flake8:
- 6
- 7
pypy38:
pypy39:
classifiers:
- 'Development Status :: 4 - Beta'
- 'Framework :: Flake8'
- 'Intended Audience :: Developers'
- "Topic :: Utilities"
console_scripts:
- "ensure_dunder_all=flake8_dunder_all.__main__:main"
- "ensure-dunder-all=flake8_dunder_all.__main__:main"
extra_sphinx_extensions:
- sphinx_toolbox.pre_commit
- sphinx_toolbox.flake8
- sphinx_click
- sphinx_toolbox.more_autosummary.column_widths
- sphinx_favicon
entry_points:
flake8.extension:
- DAL=flake8_dunder_all:Plugin
keywords:
- flake8
sphinx_conf_epilogue:
- needspace_amount = r"5\baselineskip"
- 'favicons = [{"rel": "icon", "href": "https://python-formate.github.io/assets/formate.ico", "sizes": "48x48", "type": "image/vnd.microsoft.icon"}]'
exclude_files:
- contributing
third_party_version_matrix:
flake8:
- 4
- 5
- 6
- 7