File size: 2,824 Bytes
065fee7 |
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 |
[build-system]
requires = [
"hatchling>=0.21.1",
]
build-backend = "hatchling.build"
[project]
name = "soupsieve"
description = "A modern CSS selector implementation for Beautiful Soup."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Isaac Muse", email = "Isaac.Muse@gmail.com" },
]
keywords = [
"CSS",
"HTML",
"XML",
"selector",
"filter",
"query",
"soup"
]
dynamic = [
"classifiers",
"version",
]
[project.urls]
Homepage = "https://github.com/facelessuser/soupsieve"
[tool.hatch.version]
source = "code"
path = "soupsieve/__meta__.py"
[tool.hatch.build.targets.wheel]
include = [
"/soupsieve",
]
[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",
"/soupsieve/**/*.py",
"/soupsieve/py.typed",
"/tests/**/*.py",
"/.pyspelling.yml",
"/.coveragerc",
"/mkdocs.yml"
]
[tool.mypy]
files = [
"soupsieve"
]
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
envlist =
py{38,39,310,311,312},
lint, nolxml, nohtml5lib
[testenv]
passenv = *
deps =
-rrequirements/tests.txt
commands =
mypy
pytest --cov soupsieve --cov-append {toxinidir}
coverage html -d {envtmpdir}/coverage
coverage xml
coverage report --show-missing
[testenv:documents]
passenv = *
deps =
-rrequirements/docs.txt
commands =
mkdocs build --clean --verbose --strict
pyspelling
[testenv:lint]
passenv = *
deps =
-rrequirements/lint.txt
commands =
"{envbindir}"/ruff check .
[testenv:nolxml]
passenv = *
deps =
-rrequirements/tests-nolxml.txt
commands =
pytest {toxinidir}
[testenv:nohtml5lib]
passenv = *
deps =
-rrequirements/tests-nohtml5lib.txt
commands =
pytest {toxinidir}
[pytest]
filterwarnings =
ignore:\nCSS selector pattern:UserWarning
"""
[tool.pytest.ini_options]
filterwarnings = [
"ignore:The 'strip_cdata':DeprecationWarning"
]
|