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
|
[build-system]
requires = [
"wheel",
"Cython",
"setuptools>=62.4",
]
[project]
name = 'selectolax'
version = '0.4.6'
description = 'A fast HTML5 parser with CSS selectors, written in Cython, using Modest and Lexbor engines.'
readme = 'README.md'
requires-python = '>=3.9,<3.15'
license = 'MIT'
authors = [
{ name = 'Artem Golubin', email = 'me@rushter.com' }
]
dependencies = []
keywords = [
"selectolax",
"html",
"parser",
"css",
"fast",
"lexbor",
"modest",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: Unix",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/rushter/selectolax"
Repository = "https://github.com/rushter/selectolax"
Documentation = "https://selectolax.readthedocs.io/en/latest/parser.html"
Changelog = "https://github.com/rushter/selectolax/blob/master/CHANGES.md"
[tool.cibuildwheel]
build-frontend = "build"
build-verbosity = 1
[tool.cibuildwheel.linux]
environment = { LDFLAGS = "-Wl,--strip-debug" }
skip = [
"*-manylinux_i686",
"*-musllinux_i686",
"*-win32*",
"pp*"
]
test-skip = "*-macosx_arm64"
[project.optional-dependencies]
cython = [
"Cython",
]
[tool.cython-lint]
max-line-length = 120
ignore = ['E221', 'E222', ]
[tool.setuptools.packages.find]
include = ["selectolax*"]
|