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 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
@@ -0,0 +1,7 @@
1
+ # VoidCrypt v1.1
2
+
3
+ 12‑Layer Military Grade Encryption – Universal (Python 3.7+)
4
+
5
+ ## Install
6
+ ```bash
7
+ pip install voidcrypt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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
+ )
@@ -0,0 +1,8 @@
1
+ """
2
+ VoidCrypt – 12‑Layer Military Encryption
3
+ """
4
+
5
+ __version__ = "1.1"
6
+ __author__ = "Sarvesh" # internal only
7
+
8
+ from .core import main
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,2 @@
1
+ [console_scripts]
2
+ voidcrypt = voidcrypt.core:main
@@ -0,0 +1 @@
1
+ cryptography>=3.4.0
@@ -0,0 +1 @@
1
+ voidcrypt