zipremove 0.7.1__tar.gz → 0.8.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.
- {zipremove-0.7.1/src/zipremove.egg-info → zipremove-0.8.0}/PKG-INFO +4 -5
- zipremove-0.8.0/pyproject.toml +117 -0
- zipremove-0.8.0/setup.cfg +4 -0
- {zipremove-0.7.1 → zipremove-0.8.0/src/zipremove.egg-info}/PKG-INFO +4 -5
- {zipremove-0.7.1 → zipremove-0.8.0}/src/zipremove.egg-info/SOURCES.txt +0 -2
- zipremove-0.7.1/pyproject.toml +0 -3
- zipremove-0.7.1/setup.cfg +0 -55
- zipremove-0.7.1/setup.py +0 -2
- {zipremove-0.7.1 → zipremove-0.8.0}/LICENSE.txt +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/README.md +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/src/zipremove/__init__.py +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/src/zipremove.egg-info/dependency_links.txt +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/src/zipremove.egg-info/top_level.txt +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/tests/test_zipfile.py +0 -0
- {zipremove-0.7.1 → zipremove-0.8.0}/tests/test_zipfile64.py +0 -0
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zipremove
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Extend `zipfile` with `remove`-related functionalities
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT
|
|
5
|
+
Author-email: Danny Lin <danny0838@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/danny0838/zipremove
|
|
9
8
|
Classifier: Development Status :: 4 - Beta
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: Topic :: System :: Archiving :: Compression
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.3", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "zipremove"
|
|
7
|
+
version = "0.8.0"
|
|
8
|
+
requires-python = "~=3.9"
|
|
9
|
+
description = "Extend `zipfile` with `remove`-related functionalities"
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
license-files = ["LICENSE.*"]
|
|
13
|
+
authors = [
|
|
14
|
+
{name = "Danny Lin", email = "danny0838@gmail.com"},
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Topic :: System :: Archiving :: Compression",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
22
|
+
"Programming Language :: Python :: 3.9",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Programming Language :: Python :: 3.14",
|
|
28
|
+
"Operating System :: OS Independent",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/danny0838/zipremove"
|
|
33
|
+
|
|
34
|
+
[dependency-groups]
|
|
35
|
+
lint = [
|
|
36
|
+
"flake8>=6.1",
|
|
37
|
+
"Flake8-pyproject>=1.2.3",
|
|
38
|
+
"flake8-comprehensions>=3.12",
|
|
39
|
+
"flake8-bugbear>=22.6.22",
|
|
40
|
+
"flake8-isort>=6.1",
|
|
41
|
+
"isort>=5.9.2",
|
|
42
|
+
]
|
|
43
|
+
build = [
|
|
44
|
+
"tox>=4.21.2",
|
|
45
|
+
]
|
|
46
|
+
dev = [
|
|
47
|
+
{include-group = "lint"},
|
|
48
|
+
{include-group = "build"},
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[tool.flake8]
|
|
52
|
+
exclude = [
|
|
53
|
+
".git",
|
|
54
|
+
".venv",
|
|
55
|
+
".tox",
|
|
56
|
+
"__pycache__",
|
|
57
|
+
"build",
|
|
58
|
+
]
|
|
59
|
+
max-line-length = 130
|
|
60
|
+
|
|
61
|
+
# Flake8 Rules
|
|
62
|
+
# https://www.flake8rules.com/
|
|
63
|
+
ignore = [
|
|
64
|
+
"E122",
|
|
65
|
+
"E226",
|
|
66
|
+
"E302",
|
|
67
|
+
"E305",
|
|
68
|
+
"F403",
|
|
69
|
+
"F405",
|
|
70
|
+
"W504",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[tool.isort]
|
|
74
|
+
multi_line_output = 3
|
|
75
|
+
include_trailing_comma = true
|
|
76
|
+
|
|
77
|
+
# skip directories included by default
|
|
78
|
+
# ref: https://pycqa.github.io/isort/docs/configuration/options.html
|
|
79
|
+
# extend_skip = []
|
|
80
|
+
|
|
81
|
+
[tool.tox]
|
|
82
|
+
env_list = ["py314", "py313", "py312", "py311", "py310", "py39"]
|
|
83
|
+
min_version = "4.22"
|
|
84
|
+
|
|
85
|
+
[tool.tox.env_run_base]
|
|
86
|
+
description = "run unit tests"
|
|
87
|
+
use_develop = true
|
|
88
|
+
pass_env = ["TEST_RESOURCES"]
|
|
89
|
+
commands = [["python", "-m", "unittest", {replace = "posargs", extend = true}]]
|
|
90
|
+
|
|
91
|
+
[tool.tox.env.release]
|
|
92
|
+
description = "build and release to PyPI"
|
|
93
|
+
skip_install = true
|
|
94
|
+
deps = [
|
|
95
|
+
"build",
|
|
96
|
+
"twine>=4.0",
|
|
97
|
+
]
|
|
98
|
+
pass_env = [
|
|
99
|
+
"TWINE_USERNAME",
|
|
100
|
+
"TWINE_PASSWORD",
|
|
101
|
+
]
|
|
102
|
+
commands = [
|
|
103
|
+
["python", "-m", "build", "--sdist", "--wheel"],
|
|
104
|
+
["python", "-m", "twine", "upload", "--skip-existing", "dist/*"],
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[tool.tox.env.lint]
|
|
108
|
+
description = "lint source code"
|
|
109
|
+
skip_install = true
|
|
110
|
+
dependency_groups = ["lint"]
|
|
111
|
+
commands = [["flake8", {replace = "posargs", default = ["."], extend = true}]]
|
|
112
|
+
|
|
113
|
+
[tool.tox.env.isort]
|
|
114
|
+
description = "sort imports for the source code"
|
|
115
|
+
skip_install = true
|
|
116
|
+
dependency_groups = ["lint"]
|
|
117
|
+
commands = [["isort", {replace = "posargs", default = ["."], extend = true}]]
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zipremove
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Extend `zipfile` with `remove`-related functionalities
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT
|
|
5
|
+
Author-email: Danny Lin <danny0838@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/danny0838/zipremove
|
|
9
8
|
Classifier: Development Status :: 4 - Beta
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: Topic :: System :: Archiving :: Compression
|
zipremove-0.7.1/pyproject.toml
DELETED
zipremove-0.7.1/setup.cfg
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
[metadata]
|
|
2
|
-
name = zipremove
|
|
3
|
-
version = 0.7.1
|
|
4
|
-
author = Danny Lin
|
|
5
|
-
author_email = danny0838@gmail.com
|
|
6
|
-
url = https://github.com/danny0838/zipremove
|
|
7
|
-
description = Extend `zipfile` with `remove`-related functionalities
|
|
8
|
-
long_description = file: README.md
|
|
9
|
-
long_description_content_type = text/markdown
|
|
10
|
-
license = MIT
|
|
11
|
-
classifiers =
|
|
12
|
-
Development Status :: 4 - Beta
|
|
13
|
-
Intended Audience :: Developers
|
|
14
|
-
Topic :: System :: Archiving :: Compression
|
|
15
|
-
Programming Language :: Python :: 3
|
|
16
|
-
Programming Language :: Python :: 3 :: Only
|
|
17
|
-
Programming Language :: Python :: 3.9
|
|
18
|
-
Programming Language :: Python :: 3.10
|
|
19
|
-
Programming Language :: Python :: 3.11
|
|
20
|
-
Programming Language :: Python :: 3.12
|
|
21
|
-
Programming Language :: Python :: 3.13
|
|
22
|
-
Programming Language :: Python :: 3.14
|
|
23
|
-
Operating System :: OS Independent
|
|
24
|
-
|
|
25
|
-
[options]
|
|
26
|
-
python_requires = ~=3.9
|
|
27
|
-
|
|
28
|
-
[flake8]
|
|
29
|
-
exclude =
|
|
30
|
-
.git
|
|
31
|
-
.venv
|
|
32
|
-
.tox
|
|
33
|
-
__pycache__
|
|
34
|
-
build
|
|
35
|
-
setup.py
|
|
36
|
-
max-line-length = 130
|
|
37
|
-
ignore =
|
|
38
|
-
E122
|
|
39
|
-
E226
|
|
40
|
-
E302
|
|
41
|
-
E305
|
|
42
|
-
F403
|
|
43
|
-
F405
|
|
44
|
-
W504
|
|
45
|
-
|
|
46
|
-
[isort]
|
|
47
|
-
multi_line_output = 3
|
|
48
|
-
include_trailing_comma = true
|
|
49
|
-
extend_skip =
|
|
50
|
-
setup.py
|
|
51
|
-
|
|
52
|
-
[egg_info]
|
|
53
|
-
tag_build =
|
|
54
|
-
tag_date = 0
|
|
55
|
-
|
zipremove-0.7.1/setup.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|