-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
138 lines (124 loc) · 2.4 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
[build-system]
requires = [
"hatchling>=0.21.1",
]
build-backend = "hatchling.build"
[project]
name = "bracex"
description = "Bash style brace expander."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Isaac Muse", email = "Isaac.Muse@gmail.com" },
]
keywords = [
"bash",
"brace",
"expand"
]
dynamic = [
"classifiers",
"version",
]
[project.urls]
Homepage = "https://github.com/facelessuser/bracex"
[tool.hatch.version]
source = "code"
path = "bracex/__meta__.py"
[tool.hatch.build.targets.wheel]
include = [
"/bracex",
]
[tool.hatch.build.targets.sdist]
include = [
"/docs/src/markdown/**/*.md",
"/docs/src/markdown/**/*.gif",
"/docs/src/markdown/**/*.png",
"/docs/src/markdown/dictionary/*.txt",
"/docs/theme/**/*.css",
"/docs/theme/**/*.js",
"/docs/theme/**/*.html",
"/requirements/*.txt",
"/bracex/**/*.py",
"/bracex/py.typed",
"/tests/**/*.py",
"/tests/**/*.txt",
"/tests/**/*.sh",
"/tools/**/*.py",
"/.pyspelling.yml",
"/.coveragerc",
"/mkdocs.yml"
]
[tool.mypy]
files = [
"bracex"
]
strict = true
show_error_codes = true
[tool.hatch.metadata.hooks.custom]
[tool.ruff]
line-length = 120
lint.select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"D", # pydocstyle
"C4", # flake8-comprehensions
"N", # pep8-naming
"E", # pycodestyle
"F", # pyflakes
"PGH", # pygrep-hooks
"RUF", # ruff
# "UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020,
"PERF" # Perflint
]
lint.ignore = [
"E741",
"D202",
"D401",
"D212",
"D203",
"N802",
"N801",
"N803",
"N806",
"N818",
"RUF012",
"RUF005",
"PGH004",
"RUF100"
]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
skipsdist=true
envlist=
py38,py39,py310,py311,py312,py313,
lint
[testenv]
passenv= *
deps=
-rrequirements/test.txt
commands=
{envpython} -m mypy
{envpython} -m pytest --cov bracex --cov-append tests
{envpython} -m coverage html -d {envtmpdir}/coverage
{envpython} -m coverage xml
{envpython} -m coverage report --show-missing
[testenv:lint]
passenv= *
deps=
-rrequirements/lint.txt
commands=
"{envbindir}"/ruff check .
[testenv:documents]
passenv= *
deps=
-rrequirements/docs.txt
commands=
mkdocs build --clean --verbose --strict
pyspelling
"""