forked from scrapinghub/web-poet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.51 KB
/
setup.py
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
from setuptools import find_packages, setup
with open("README.rst") as f:
long_description = f.read()
setup(
name="web-poet",
version="0.13.1",
description="Zyte's Page Object pattern for web scraping",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Zyte Group Ltd",
author_email="[email protected]",
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"]},
install_requires=[
"attrs >= 21.3.0",
"parsel",
"url-matcher",
"multidict",
"w3lib >= 1.22.0",
"async-lru >= 1.0.3",
"itemadapter >= 0.8.0",
"andi",
"python-dateutil",
"time-machine",
"packaging >= 20.0",
"backports.zoneinfo; python_version < '3.9' and platform_system != 'Windows'",
],
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)