Karim shoair commited on
Commit
5769f93
·
1 Parent(s): 989387a

build: pump version up and deps

Browse files
Files changed (4) hide show
  1. pyproject.toml +4 -4
  2. scrapling/__init__.py +1 -1
  3. scrapling/cli.py +0 -2
  4. setup.cfg +1 -1
pyproject.toml CHANGED
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
  [project]
6
  name = "scrapling"
7
  # Static version instead of a dynamic version so we can get better layer caching while building docker, check the docker file to understand
8
- version = "0.3.11"
9
  description = "Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!"
10
  readme = {file = "docs/README.md", content-type = "text/markdown"}
11
  license = {file = "LICENSE"}
@@ -59,14 +59,14 @@ classifiers = [
59
  dependencies = [
60
  "lxml>=6.0.2",
61
  "cssselect>=1.3.0",
62
- "orjson>=3.11.4",
63
  "tldextract>=5.3.0",
64
  ]
65
 
66
  [project.optional-dependencies]
67
  fetchers = [
68
  "click>=8.3.0",
69
- "curl_cffi>=0.13.0",
70
  "playwright>=1.56.0",
71
  "patchright>=1.56.0",
72
  "camoufox>=0.4.11",
@@ -74,7 +74,7 @@ fetchers = [
74
  "msgspec>=0.20.0",
75
  ]
76
  ai = [
77
- "mcp>=1.23.0",
78
  "markdownify>=1.2.0",
79
  "scrapling[fetchers]",
80
  ]
 
5
  [project]
6
  name = "scrapling"
7
  # Static version instead of a dynamic version so we can get better layer caching while building docker, check the docker file to understand
8
+ version = "0.3.12"
9
  description = "Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!"
10
  readme = {file = "docs/README.md", content-type = "text/markdown"}
11
  license = {file = "LICENSE"}
 
59
  dependencies = [
60
  "lxml>=6.0.2",
61
  "cssselect>=1.3.0",
62
+ "orjson>=3.11.5",
63
  "tldextract>=5.3.0",
64
  ]
65
 
66
  [project.optional-dependencies]
67
  fetchers = [
68
  "click>=8.3.0",
69
+ "curl_cffi>=0.14.0",
70
  "playwright>=1.56.0",
71
  "patchright>=1.56.0",
72
  "camoufox>=0.4.11",
 
74
  "msgspec>=0.20.0",
75
  ]
76
  ai = [
77
+ "mcp>=1.24.0",
78
  "markdownify>=1.2.0",
79
  "scrapling[fetchers]",
80
  ]
scrapling/__init__.py CHANGED
@@ -1,5 +1,5 @@
1
  __author__ = "Karim Shoair (karim.shoair@pm.me)"
2
- __version__ = "0.3.11"
3
  __copyright__ = "Copyright (c) 2024 Karim Shoair"
4
 
5
  from typing import Any, TYPE_CHECKING
 
1
  __author__ = "Karim Shoair (karim.shoair@pm.me)"
2
+ __version__ = "0.3.12"
3
  __copyright__ = "Copyright (c) 2024 Karim Shoair"
4
 
5
  from typing import Any, TYPE_CHECKING
scrapling/cli.py CHANGED
@@ -2,8 +2,6 @@ from pathlib import Path
2
  from subprocess import check_output
3
  from sys import executable as python_executable
4
 
5
- from curl_cffi.requests import impersonate
6
-
7
  from scrapling.core.utils import log
8
  from scrapling.engines.toolbelt.custom import Response
9
  from scrapling.core.utils._shell import _CookieParser, _ParseHeaders
 
2
  from subprocess import check_output
3
  from sys import executable as python_executable
4
 
 
 
5
  from scrapling.core.utils import log
6
  from scrapling.engines.toolbelt.custom import Response
7
  from scrapling.core.utils._shell import _CookieParser, _ParseHeaders
setup.cfg CHANGED
@@ -1,6 +1,6 @@
1
  [metadata]
2
  name = scrapling
3
- version = 0.3.11
4
  author = Karim Shoair
5
  author_email = karim.shoair@pm.me
6
  description = Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!
 
1
  [metadata]
2
  name = scrapling
3
+ version = 0.3.12
4
  author = Karim Shoair
5
  author_email = karim.shoair@pm.me
6
  description = Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!