-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
setup.py
86 lines (82 loc) · 2.53 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
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
from setuptools import setup
install_requires = [
"psutil",
"javascript_fixes",
"requests",
"joblib>=1.3.2",
"beautifulsoup4>=4.11.2",
"lxml>=5.2.2",
"openpyxl",
"close_chrome",
"botasaurus-api",
"botasaurus-driver",
"bota",
"botasaurus-proxy-authentication",
"botasaurus-requests"
]
extras_require = {}
cpython_dependencies = [
"PyDispatcher>=2.0.5",
]
def get_description():
try:
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
return long_description
except:
return None
setup(
name="botasaurus",
packages=["botasaurus"],
version='4.0.60',
license="MIT",
project_urls={
"Documentation": "https://omkar.cloud/botasaurus/",
"Source": "https://github.com/omkarcloud/botasaurus",
"Tracker": "https://github.com/omkarcloud/botasaurus/issues",
},
description="The All in One Web Scraping Framework",
long_description_content_type="text/markdown",
long_description=get_description(),
author="Chetan Jain",
author_email="[email protected]",
maintainer="Chetan Jain",
maintainer_email="[email protected]",
keywords=[
"crawler",
"framework",
"scraping",
"crawling",
"web-scraping",
"web-scraping-python",
"cloudflare-bypass",
"anti-detection",
"bot-detection",
"automation",
"webdriver",
"browser",
],
classifiers=[
"Framework :: Scrapy",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.7",
install_requires=install_requires,
extras_require=extras_require,
)