[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rsearch"
version = "1.1.0"
description = "Multi-source search aggregator API"
authors = [
{name = "retoor", email = "retoor@molodetz.nl"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
]
dependencies = [
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
rsearch = "rsearch:main"
[project.urls]
Homepage = "https://github.com/retoor/rsearch"
[tool.setuptools.packages.find]
where = ["."]
include = ["rsearch*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]