-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (34 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import find_packages, setup
def read_long_description(file_path):
with open(file_path, "r") as file:
return file.read()
setup(
name="scrapy-puppeteer-client",
version="0.3.8",
description="A library to use Puppeteer-managed browser in Scrapy spiders",
long_description=read_long_description("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/ispras/scrapy-puppeteer",
author="MODIS @ ISP RAS",
maintainer="Maksim Varlamov",
maintainer_email="[email protected]",
packages=find_packages(),
install_requires=["scrapy>=2.6", "pyppeteer", "syncer", "bs4", "playwright"],
python_requires=">=3.6",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
"Framework :: Scrapy",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
],
)