-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
69 lines (63 loc) · 2.48 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
"""
Undetected Geckodriver
======================
This package provides a sophisticated wrapper around the
webdriver.Firefox class from the Selenium package. It
attempts to avoid detection by web services by patching
certain parts of the Firefox browser.
Author: Bytexenon (https://github.com/Bytexenon)
"""
# Imports #
import os
from setuptools import setup
# Constants #
DIRNAME = os.path.dirname(__file__)
DESCRIPTION = (
"A Firefox Selenium WebDriver that patches the browser to avoid detection. "
"Bypasses services such as Cloudflare, Distil Networks, and more. "
"Ideal for web scraping, automated testing, and bot development without getting detected."
)
LONG_DESC = open(os.path.join(DIRNAME, "README.md")).read()
# Setup #
setup(
name="undetected-geckodriver",
version="1.0.7",
packages=["undetected_geckodriver"],
install_requires=["selenium>=4.10.0", "psutil>=5.8.0"],
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESC,
long_description_content_type="text/markdown",
author="ByteXenon",
author_email="ddavi142@asu.edu",
url="https://github.com/ByteXenon/undetected_geckodriver",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
project_urls={
"Documentation": "https://github.com/ByteXenon/undetected_geckodriver#readme",
"Source": "https://github.com/ByteXenon/undetected_geckodriver",
"Tracker": "https://github.com/ByteXenon/undetected_geckodriver/issues",
"Changelog": "https://github.com/ByteXenon/undetected_geckodriver/releases",
},
keywords=(
"selenium firefox webdriver undetected bypass cloudflare distil "
"web scraping automated testing bot development anti-detection "
"automation browser automation"
),
python_requires=">=3.6",
license="MIT",
)