tibet-zip 0.1.4__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.
- tibet_zip-0.1.4/PKG-INFO +40 -0
- tibet_zip-0.1.4/README.md +16 -0
- tibet_zip-0.1.4/pyproject.toml +35 -0
- tibet_zip-0.1.4/setup.cfg +4 -0
- tibet_zip-0.1.4/tibet_zip.egg-info/PKG-INFO +40 -0
- tibet_zip-0.1.4/tibet_zip.egg-info/SOURCES.txt +7 -0
- tibet_zip-0.1.4/tibet_zip.egg-info/dependency_links.txt +1 -0
- tibet_zip-0.1.4/tibet_zip.egg-info/requires.txt +1 -0
- tibet_zip-0.1.4/tibet_zip.egg-info/top_level.txt +1 -0
tibet_zip-0.1.4/PKG-INFO
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tibet-zip
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: TIBET-zip — alias package for tbz (block-level authenticated compression)
|
|
5
|
+
Author-email: Jasper van de Meent <jasper@humotica.nl>
|
|
6
|
+
License-Expression: MIT OR Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/jaspertvdm/tbz
|
|
8
|
+
Project-URL: Repository, https://github.com/jaspertvdm/tbz
|
|
9
|
+
Project-URL: Issues, https://github.com/jaspertvdm/tbz/issues
|
|
10
|
+
Project-URL: Documentation, https://github.com/jaspertvdm/tbz/blob/main/ARCHITECTURE.md
|
|
11
|
+
Keywords: compression,security,provenance,supply-chain,zero-trust,tibet,ed25519
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Rust
|
|
18
|
+
Classifier: Topic :: Security
|
|
19
|
+
Classifier: Topic :: Security :: Cryptography
|
|
20
|
+
Classifier: Topic :: System :: Archiving :: Compression
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: tbz==0.1.4
|
|
24
|
+
|
|
25
|
+
# tibet-zip
|
|
26
|
+
|
|
27
|
+
This is an alias package for [**tbz**](https://pypi.org/project/tbz/) (TIBET-zip).
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Both work — same package:
|
|
31
|
+
pip install tbz
|
|
32
|
+
pip install tibet-zip
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
# Both work — same API:
|
|
37
|
+
from tbz import TBZArchive, Mirror
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
See the [tbz documentation](https://github.com/jaspertvdm/tbz) for full usage.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# tibet-zip
|
|
2
|
+
|
|
3
|
+
This is an alias package for [**tbz**](https://pypi.org/project/tbz/) (TIBET-zip).
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
# Both work — same package:
|
|
7
|
+
pip install tbz
|
|
8
|
+
pip install tibet-zip
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```python
|
|
12
|
+
# Both work — same API:
|
|
13
|
+
from tbz import TBZArchive, Mirror
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
See the [tbz documentation](https://github.com/jaspertvdm/tbz) for full usage.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tibet-zip"
|
|
7
|
+
version = "0.1.4"
|
|
8
|
+
description = "TIBET-zip — alias package for tbz (block-level authenticated compression)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT OR Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Jasper van de Meent", email = "jasper@humotica.nl"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["compression", "security", "provenance", "supply-chain", "zero-trust", "tibet", "ed25519"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 3 - Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: System Administrators",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Rust",
|
|
23
|
+
"Topic :: Security",
|
|
24
|
+
"Topic :: Security :: Cryptography",
|
|
25
|
+
"Topic :: System :: Archiving :: Compression",
|
|
26
|
+
]
|
|
27
|
+
dependencies = [
|
|
28
|
+
"tbz==0.1.4",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/jaspertvdm/tbz"
|
|
33
|
+
Repository = "https://github.com/jaspertvdm/tbz"
|
|
34
|
+
Issues = "https://github.com/jaspertvdm/tbz/issues"
|
|
35
|
+
Documentation = "https://github.com/jaspertvdm/tbz/blob/main/ARCHITECTURE.md"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tibet-zip
|
|
3
|
+
Version: 0.1.4
|
|
4
|
+
Summary: TIBET-zip — alias package for tbz (block-level authenticated compression)
|
|
5
|
+
Author-email: Jasper van de Meent <jasper@humotica.nl>
|
|
6
|
+
License-Expression: MIT OR Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/jaspertvdm/tbz
|
|
8
|
+
Project-URL: Repository, https://github.com/jaspertvdm/tbz
|
|
9
|
+
Project-URL: Issues, https://github.com/jaspertvdm/tbz/issues
|
|
10
|
+
Project-URL: Documentation, https://github.com/jaspertvdm/tbz/blob/main/ARCHITECTURE.md
|
|
11
|
+
Keywords: compression,security,provenance,supply-chain,zero-trust,tibet,ed25519
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: System Administrators
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Rust
|
|
18
|
+
Classifier: Topic :: Security
|
|
19
|
+
Classifier: Topic :: Security :: Cryptography
|
|
20
|
+
Classifier: Topic :: System :: Archiving :: Compression
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: tbz==0.1.4
|
|
24
|
+
|
|
25
|
+
# tibet-zip
|
|
26
|
+
|
|
27
|
+
This is an alias package for [**tbz**](https://pypi.org/project/tbz/) (TIBET-zip).
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Both work — same package:
|
|
31
|
+
pip install tbz
|
|
32
|
+
pip install tibet-zip
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
# Both work — same API:
|
|
37
|
+
from tbz import TBZArchive, Mirror
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
See the [tbz documentation](https://github.com/jaspertvdm/tbz) for full usage.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tbz==0.1.4
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|