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]
requires = [
"hatchling>=0.21.1",
]
build-backend = "hatchling.build"
[project]
name = "wcmatch"
description = "Wildcard/glob file name matcher."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Isaac Muse", email = "Isaac.Muse@gmail.com" },
]
keywords = [
"glob",
"fnmatch",
"search",
"wildcard"
]
dynamic = [
"classifiers",
"version",
]
dependencies = [
"bracex>=2.1.1"
]
[project.urls]
Homepage = "https://github.com/facelessuser/wcmatch"
[tool.hatch.version]
source = "code"
path = "wcmatch/__meta__.py"
[tool.hatch.build.targets.wheel]
include = [
"/wcmatch",
]
[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",
"/wcmatch/**/*.py",
"/wcmatch/py.typed",
"/tests/**/*.py",
"/tools/**/*.py",
"/.pyspelling.yml",
"/.coveragerc",
"/mkdocs.yml"
]
[tool.mypy]
files = [
"wcmatch"
]
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",
"D417",
"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=LANG
deps=
.
-r requirements/test.txt
commands=
{envpython} -m mypy
{envpython} -m pytest --cov wcmatch --cov-append tests
{envpython} -m coverage html -d {envtmpdir}/coverage
{envpython} -m coverage xml
{envpython} -m coverage report --show-missing
[testenv:lint]
deps=
-r requirements/lint.txt
commands=
"{envbindir}"/ruff check .
[testenv:documents]
deps=
-r requirements/docs.txt
commands=
{envpython} -m mkdocs build --clean --verbose --strict
{envbindir}/pyspelling
[pytest]
addopts=-p no:warnings
"""
|