jerkup 2.2.0__tar.gz → 2.3.0__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.
- {jerkup-2.2.0 → jerkup-2.3.0}/PKG-INFO +6 -7
- {jerkup-2.2.0 → jerkup-2.3.0}/README.md +1 -1
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/__main__.py +1 -1
- {jerkup-2.2.0 → jerkup-2.3.0}/pyproject.toml +10 -10
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/__init__.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/configuration.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/formatter.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/iso8601.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/messages.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/py.typed +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/session.py +0 -0
- {jerkup-2.2.0 → jerkup-2.3.0}/jerkup/uploader.py +0 -0
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jerkup
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: Hamster Uploader
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: deadmaster
|
|
7
7
|
Author-email: deadmaster@noreply.codeberg.org
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.14,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.14
|
|
13
12
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
14
|
-
Requires-Dist: msgspec (>=0.
|
|
15
|
-
Requires-Dist: platformdirs (>=4.
|
|
16
|
-
Requires-Dist: requests (>=2.
|
|
13
|
+
Requires-Dist: msgspec (>=0.21.1,<0.22.0)
|
|
14
|
+
Requires-Dist: platformdirs (>=4.11.8,<5.0.0)
|
|
15
|
+
Requires-Dist: requests (>=2.34.2,<3.0.0)
|
|
17
16
|
Requires-Dist: requests-toolbelt (>=1.0.0,<2.0.0)
|
|
18
17
|
Project-URL: Repository, https://codeberg.org/deadmaster/jerkup
|
|
19
18
|
Description-Content-Type: text/markdown
|
|
@@ -22,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
22
21
|
|
|
23
22
|
## Installation
|
|
24
23
|
|
|
25
|
-
Requires Python 3.
|
|
24
|
+
Requires Python 3.14.
|
|
26
25
|
|
|
27
26
|
Install using `pip install --user jerkup`.
|
|
28
27
|
|
|
@@ -42,7 +42,7 @@ def parse_tags(tags: str) -> tuple[str, ...]:
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
def create_parser(require_api_key: bool) -> argparse.ArgumentParser:
|
|
45
|
-
parser = argparse.ArgumentParser()
|
|
45
|
+
parser = argparse.ArgumentParser(color=False)
|
|
46
46
|
parser.description = 'hamster uploader'
|
|
47
47
|
|
|
48
48
|
parser.add_argument('image', type=str, nargs='+', help='path to image file')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "jerkup"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.3.0"
|
|
4
4
|
description = "Hamster Uploader"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
authors = ["deadmaster <deadmaster@noreply.codeberg.org>"]
|
|
@@ -9,23 +9,23 @@ repository = "https://codeberg.org/deadmaster/jerkup"
|
|
|
9
9
|
classifiers = ["Topic :: Internet :: WWW/HTTP"]
|
|
10
10
|
|
|
11
11
|
[tool.poetry.dependencies]
|
|
12
|
-
python = "^3.
|
|
13
|
-
requests = "^2.
|
|
12
|
+
python = "^3.14"
|
|
13
|
+
requests = "^2.34.2"
|
|
14
14
|
requests-toolbelt = "^1.0.0"
|
|
15
|
-
msgspec = "^0.
|
|
16
|
-
platformdirs = "^4.
|
|
15
|
+
msgspec = "^0.21.1"
|
|
16
|
+
platformdirs = "^4.11.8"
|
|
17
17
|
|
|
18
18
|
[tool.poetry.group.dev.dependencies]
|
|
19
|
-
mypy = "^
|
|
20
|
-
ruff = "^0.
|
|
21
|
-
types-requests = "^2.
|
|
19
|
+
mypy = "^2.3.1"
|
|
20
|
+
ruff = "^0.16.6"
|
|
21
|
+
types-requests = "^2.33.0"
|
|
22
22
|
|
|
23
23
|
[tool.poetry.scripts]
|
|
24
24
|
jerkup = "jerkup.__main__:main"
|
|
25
25
|
|
|
26
26
|
[tool.ruff]
|
|
27
27
|
include = ["jerkup/**/*.py"]
|
|
28
|
-
target-version = "
|
|
28
|
+
target-version = "py314"
|
|
29
29
|
line-length = 100
|
|
30
30
|
indent-width = 4
|
|
31
31
|
|
|
@@ -42,7 +42,7 @@ indent-style = "tab"
|
|
|
42
42
|
skip-magic-trailing-comma = true
|
|
43
43
|
|
|
44
44
|
[tool.mypy]
|
|
45
|
-
python_version = "3.
|
|
45
|
+
python_version = "3.14"
|
|
46
46
|
show_error_codes = true
|
|
47
47
|
show_absolute_path = true
|
|
48
48
|
files = ["jerkup"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|