voidcrypt 1.2__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.
- voidcrypt-1.2/PKG-INFO +22 -0
- voidcrypt-1.2/README.md +7 -0
- voidcrypt-1.2/setup.cfg +4 -0
- voidcrypt-1.2/setup.py +18 -0
- voidcrypt-1.2/src/voidcrypt/__init__.py +8 -0
- voidcrypt-1.2/src/voidcrypt/core.so +0 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/PKG-INFO +22 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/SOURCES.txt +11 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/dependency_links.txt +1 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/entry_points.txt +2 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/not-zip-safe +1 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/requires.txt +1 -0
- voidcrypt-1.2/src/voidcrypt.egg-info/top_level.txt +1 -0
voidcrypt-1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: voidcrypt
|
|
3
|
+
Version: 1.2
|
|
4
|
+
Summary: 🔒 VoidCrypt – 12‑Layer Military Grade Encryption (Universal)
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: cryptography>=3.4.0
|
|
9
|
+
Dynamic: description
|
|
10
|
+
Dynamic: description-content-type
|
|
11
|
+
Dynamic: license
|
|
12
|
+
Dynamic: requires-dist
|
|
13
|
+
Dynamic: requires-python
|
|
14
|
+
Dynamic: summary
|
|
15
|
+
|
|
16
|
+
# VoidCrypt v1.1
|
|
17
|
+
|
|
18
|
+
12‑Layer Military Grade Encryption – Universal (Python 3.7+)
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
```bash
|
|
22
|
+
pip install voidcrypt
|
voidcrypt-1.2/README.md
ADDED
voidcrypt-1.2/setup.cfg
ADDED
voidcrypt-1.2/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="voidcrypt",
|
|
5
|
+
version="1.2",
|
|
6
|
+
description="🔒 VoidCrypt – 12‑Layer Military Grade Encryption (Universal)",
|
|
7
|
+
long_description=open("README.md").read(),
|
|
8
|
+
long_description_content_type="text/markdown",
|
|
9
|
+
packages=find_packages(where="src"),
|
|
10
|
+
package_dir={"": "src"},
|
|
11
|
+
package_data={"voidcrypt": ["*.so", "*.pyd"]},
|
|
12
|
+
exclude_package_data={"voidcrypt": ["*.py"]},
|
|
13
|
+
install_requires=["cryptography>=3.4.0"],
|
|
14
|
+
python_requires=">=3.7",
|
|
15
|
+
entry_points={"console_scripts": ["voidcrypt=voidcrypt.core:main"]},
|
|
16
|
+
license="MIT",
|
|
17
|
+
zip_safe=False,
|
|
18
|
+
)
|
|
Binary file
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: voidcrypt
|
|
3
|
+
Version: 1.2
|
|
4
|
+
Summary: 🔒 VoidCrypt – 12‑Layer Military Grade Encryption (Universal)
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: cryptography>=3.4.0
|
|
9
|
+
Dynamic: description
|
|
10
|
+
Dynamic: description-content-type
|
|
11
|
+
Dynamic: license
|
|
12
|
+
Dynamic: requires-dist
|
|
13
|
+
Dynamic: requires-python
|
|
14
|
+
Dynamic: summary
|
|
15
|
+
|
|
16
|
+
# VoidCrypt v1.1
|
|
17
|
+
|
|
18
|
+
12‑Layer Military Grade Encryption – Universal (Python 3.7+)
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
```bash
|
|
22
|
+
pip install voidcrypt
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
src/voidcrypt/__init__.py
|
|
4
|
+
src/voidcrypt/core.so
|
|
5
|
+
src/voidcrypt.egg-info/PKG-INFO
|
|
6
|
+
src/voidcrypt.egg-info/SOURCES.txt
|
|
7
|
+
src/voidcrypt.egg-info/dependency_links.txt
|
|
8
|
+
src/voidcrypt.egg-info/entry_points.txt
|
|
9
|
+
src/voidcrypt.egg-info/not-zip-safe
|
|
10
|
+
src/voidcrypt.egg-info/requires.txt
|
|
11
|
+
src/voidcrypt.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cryptography>=3.4.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
voidcrypt
|