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
|
from pathlib import Path
from setuptools import find_packages, setup
setup(
name="web-poet",
version="0.23.2",
description="Zyte's Page Object pattern for web scraping",
long_description=Path("README.rst").read_text(),
long_description_content_type="text/x-rst",
author="Zyte Group Ltd",
author_email="opensource@zyte.com",
url="https://github.com/scrapinghub/web-poet",
packages=find_packages(include=["web_poet*"]),
package_data={
"web_poet": ["py.typed"],
},
entry_points={"pytest11": ["web-poet = web_poet.testing.pytest"]},
python_requires=">=3.10",
install_requires=[
"attrs >= 21.3.0",
"parsel >= 1.5.0",
"url-matcher >= 0.4.0",
"multidict >= 0.5.0",
"w3lib >= 1.22.0",
"async-lru >= 1.0.3",
"itemadapter >= 0.8.0",
"andi >= 0.5.0",
"python-dateutil >= 2.7.0",
"time-machine >= 2.7.1",
"packaging >= 20.0",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
],
)
|