-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
144 lines (137 loc) · 2.28 KB
/
pyproject.toml
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools-scm"
]
[project]
authors = [
{email = "[email protected]", name = "scikit-surgery"}
]
classifiers = [
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed"
]
dependencies = [
]
description = "This is the initial templating for the scikit-surgery-stats repo, to create a cookieninja template out of the dashboard deployment"
dynamic = [
"version"
]
keywords = [
]
name = "dashboard-stats-template"
optional-dependencies = {dev = [
"pypinfo",
"pytest",
"PyGithub",
"cookieninja",
"black",
"build",
"mypy",
"pre-commit",
"ruff",
"tox",
"twine"
]}
readme = "README.md"
requires-python = ">=3.10"
license.file = "LICENCE.md"
urls.homepage = "https://github.com/yidilozdemir/dashboard-stats-template"
[tool.coverage]
report = {skip_covered = true, sort = "cover"}
run = {branch = true, parallel = true, source = [
"dashboard-stats-template"
]}
paths.source = [
".",
".tox*/*/lib/python*/site-packages"
]
[tool.mypy]
explicit_package_bases = true
plugins = [
"numpy.typing.mypy_plugin",
"pydantic.mypy"
]
[tool.ruff]
fix = true
force-exclude = true
ignore = [
"D203", # no-blank-line-before-class
"D212", # multi-line-summary-first-line
"D417" # argument description in docstring (unreliable)
]
per-file-ignores = {"test_*" = [
"S101"
]}
select = [
"A",
"ARG",
"B",
"BLE",
"C",
"COM",
"D",
"DJ",
"DTZ",
"E",
"EM",
"ERA",
"EXE",
"F",
"FBT",
"I",
"ICN",
"ISC",
"N",
"NPY",
"PD",
"PGH",
"PIE",
"PL",
"PT",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"S",
"SIM",
"T",
"TCH",
"TID",
"UP",
"W",
"YTT"
]
target-version = "py310"
isort.known-first-party = [
"dashboard_stats_template"
]
mccabe.max-complexity = 18
pep8-naming.classmethod-decorators = [
"classmethod",
"pydantic.validator"
]
[tool.tox]
legacy_tox_ini = """
[gh-actions]
python =
3.10: py310
3.11: py311
[testenv]
commands =
pytest --cov
deps =
pytest
pytest-cov
[tox]
env_list =
py310
py311
"""