Karim shoair Christian Rost commited on
Commit ·
a29b545
1
Parent(s): 814b9a6
build: pump up the version
Browse filesCo-Authored-By: Christian Rost <chr@baltic-online.de>
- pyproject.toml +1 -1
- scrapling/__init__.py +1 -1
- server.json +2 -2
- 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.4.
|
| 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 = "README.md", content-type = "text/markdown"}
|
| 11 |
license = {file = "LICENSE"}
|
|
|
|
| 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.4.2"
|
| 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 = "README.md", content-type = "text/markdown"}
|
| 11 |
license = {file = "LICENSE"}
|
scrapling/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
__author__ = "Karim Shoair (karim.shoair@pm.me)"
|
| 2 |
-
__version__ = "0.4.
|
| 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.4.2"
|
| 3 |
__copyright__ = "Copyright (c) 2024 Karim Shoair"
|
| 4 |
|
| 5 |
from typing import Any, TYPE_CHECKING
|
server.json
CHANGED
|
@@ -14,12 +14,12 @@
|
|
| 14 |
"mimeType": "image/png"
|
| 15 |
}
|
| 16 |
],
|
| 17 |
-
"version": "0.4.
|
| 18 |
"packages": [
|
| 19 |
{
|
| 20 |
"registryType": "pypi",
|
| 21 |
"identifier": "scrapling",
|
| 22 |
-
"version": "0.4.
|
| 23 |
"runtimeHint": "uvx",
|
| 24 |
"packageArguments": [
|
| 25 |
{
|
|
|
|
| 14 |
"mimeType": "image/png"
|
| 15 |
}
|
| 16 |
],
|
| 17 |
+
"version": "0.4.2",
|
| 18 |
"packages": [
|
| 19 |
{
|
| 20 |
"registryType": "pypi",
|
| 21 |
"identifier": "scrapling",
|
| 22 |
+
"version": "0.4.2",
|
| 23 |
"runtimeHint": "uvx",
|
| 24 |
"packageArguments": [
|
| 25 |
{
|
setup.cfg
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[metadata]
|
| 2 |
name = scrapling
|
| 3 |
-
version = 0.4.
|
| 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.4.2
|
| 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!
|