basecase 4.49.7__tar.gz → 4.49.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {basecase-4.49.7 → basecase-4.49.9}/PKG-INFO +3 -3
- {basecase-4.49.7 → basecase-4.49.9}/basecase.egg-info/PKG-INFO +3 -3
- basecase-4.49.9/basecase.egg-info/requires.txt +1 -0
- {basecase-4.49.7 → basecase-4.49.9}/setup.py +10 -5
- basecase-4.49.7/basecase.egg-info/requires.txt +0 -1
- {basecase-4.49.7 → basecase-4.49.9}/README.md +0 -0
- {basecase-4.49.7 → basecase-4.49.9}/basecase.egg-info/SOURCES.txt +0 -0
- {basecase-4.49.7 → basecase-4.49.9}/basecase.egg-info/dependency_links.txt +0 -0
- {basecase-4.49.7 → basecase-4.49.9}/basecase.egg-info/top_level.txt +0 -0
- {basecase-4.49.7 → basecase-4.49.9}/pyproject.toml +0 -0
- {basecase-4.49.7 → basecase-4.49.9}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basecase
|
|
3
|
-
Version: 4.49.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 4.49.9
|
|
4
|
+
Summary: SeleniumBase is a framework for web crawling, scraping, and testing. Supports pytest. CDP Mode adds stealth. Includes many tools.
|
|
5
5
|
Home-page: https://github.com/seleniumbase/SeleniumBase
|
|
6
6
|
Author: Michael Mintz
|
|
7
7
|
Author-email: mdmintz@gmail.com
|
|
@@ -52,7 +52,7 @@ Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
|
|
52
52
|
Classifier: Topic :: Utilities
|
|
53
53
|
Requires-Python: >=3.9
|
|
54
54
|
Description-Content-Type: text/markdown
|
|
55
|
-
Requires-Dist: seleniumbase>=4.49.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.49.9
|
|
56
56
|
Dynamic: author
|
|
57
57
|
Dynamic: author-email
|
|
58
58
|
Dynamic: classifier
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: basecase
|
|
3
|
-
Version: 4.49.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 4.49.9
|
|
4
|
+
Summary: SeleniumBase is a framework for web crawling, scraping, and testing. Supports pytest. CDP Mode adds stealth. Includes many tools.
|
|
5
5
|
Home-page: https://github.com/seleniumbase/SeleniumBase
|
|
6
6
|
Author: Michael Mintz
|
|
7
7
|
Author-email: mdmintz@gmail.com
|
|
@@ -52,7 +52,7 @@ Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
|
|
52
52
|
Classifier: Topic :: Utilities
|
|
53
53
|
Requires-Python: >=3.9
|
|
54
54
|
Description-Content-Type: text/markdown
|
|
55
|
-
Requires-Dist: seleniumbase>=4.49.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.49.9
|
|
56
56
|
Dynamic: author
|
|
57
57
|
Dynamic: author-email
|
|
58
58
|
Dynamic: classifier
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
seleniumbase>=4.49.9
|
|
@@ -17,7 +17,10 @@ try:
|
|
|
17
17
|
long_description_lines.append(line)
|
|
18
18
|
long_description = "\n".join(long_description_lines)
|
|
19
19
|
except IOError:
|
|
20
|
-
long_description =
|
|
20
|
+
long_description = (
|
|
21
|
+
"SeleniumBase is a framework for web crawling, scraping, and testing. "
|
|
22
|
+
"Supports pytest. CDP Mode adds stealth. Includes many tools."
|
|
23
|
+
)
|
|
21
24
|
|
|
22
25
|
if sys.argv[-1] == "publish":
|
|
23
26
|
reply = None
|
|
@@ -68,15 +71,17 @@ if sys.argv[-1] == "publish":
|
|
|
68
71
|
|
|
69
72
|
setup(
|
|
70
73
|
name='basecase',
|
|
71
|
-
version='4.49.
|
|
72
|
-
description=
|
|
74
|
+
version='4.49.9',
|
|
75
|
+
description=(
|
|
76
|
+
"SeleniumBase is a framework for web crawling, scraping, and testing. "
|
|
77
|
+
"Supports pytest. CDP Mode adds stealth. Includes many tools."
|
|
78
|
+
),
|
|
73
79
|
long_description=long_description,
|
|
74
80
|
long_description_content_type='text/markdown',
|
|
75
81
|
url='https://github.com/seleniumbase/SeleniumBase',
|
|
76
82
|
project_urls={
|
|
77
83
|
"Changelog": "https://github.com/seleniumbase/SeleniumBase/releases",
|
|
78
84
|
"Download": "https://pypi.org/project/seleniumbase/#files",
|
|
79
|
-
"Gitter": "https://gitter.im/seleniumbase/SeleniumBase",
|
|
80
85
|
"Blog": "https://seleniumbase.com/",
|
|
81
86
|
"PyPI": "https://pypi.org/project/seleniumbase/",
|
|
82
87
|
"Source": "https://github.com/seleniumbase/SeleniumBase",
|
|
@@ -122,7 +127,7 @@ setup(
|
|
|
122
127
|
],
|
|
123
128
|
python_requires=">=3.9",
|
|
124
129
|
install_requires=[
|
|
125
|
-
'seleniumbase>=4.49.
|
|
130
|
+
'seleniumbase>=4.49.9',
|
|
126
131
|
],
|
|
127
132
|
packages=[
|
|
128
133
|
],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
seleniumbase>=4.49.7
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|