jadio-encryption-vault 0.0.1__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.
@@ -0,0 +1,4 @@
1
+ .jadio_modules/
2
+ jadio_config/
3
+ __pycache__/
4
+ *.pyc
@@ -0,0 +1 @@
1
+ MIT License
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: jadio-encryption-vault
3
+ Version: 0.0.1
4
+ Summary: Jadio-compatible extension package
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.8
8
+ Requires-Dist: jadio>=0.0.2
9
+ Description-Content-Type: text/markdown
10
+
11
+ # jadio-encryption-vault
12
+
13
+ Generated by JPC.
@@ -0,0 +1,3 @@
1
+ # jadio-encryption-vault
2
+
3
+ Generated by JPC.
@@ -0,0 +1,38 @@
1
+ # AI Instruction File
2
+
3
+ Generated: 2025-06-27T20:56:48.012255
4
+
5
+ ## Project Name
6
+ jadio_encryption_vault
7
+
8
+ ## Version
9
+ 0.0.1
10
+
11
+ ## Project Description
12
+ Want to hide something? lock it away in the encryption vault. Nothing will see any content.
13
+
14
+ ## Folder Structure
15
+ jadio_encryption_vault/
16
+ __init__.py
17
+ ai/
18
+ __init__.py
19
+ cli/
20
+ __init__.py
21
+ clicommands.json
22
+ main.py
23
+ core/
24
+ __init__.py
25
+
26
+ ## TODO
27
+ - Fill in CLI command logic
28
+ - Add docstrings
29
+ - Implement missing functions
30
+ - Ensure all clicommands.json entries match modules/functions
31
+
32
+ ## HARDLINE INSTRUCTIONS
33
+ - Do not change the folder or file structure above
34
+ - Only fill in the content of the files as shown
35
+ - Follow exact module/function names in clicommands.json
36
+ - Do not add extra commands or files
37
+ - Do not assume or guess new features
38
+ - Maintain the CLI as defined
@@ -0,0 +1,21 @@
1
+
2
+ [build-system]
3
+ requires = ["hatchling"]
4
+ build-backend = "hatchling.build"
5
+
6
+ [project]
7
+ name = "jadio-encryption-vault"
8
+ dynamic = ["version"]
9
+ description = "Jadio-compatible extension package"
10
+ readme = "README.md"
11
+ license = "MIT"
12
+ requires-python = ">=3.8"
13
+ dependencies = [
14
+ "jadio>=0.0.2",
15
+ ]
16
+
17
+ [tool.hatch.version]
18
+ path = "src/jadio_encryption_vault/__init__.py"
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["src/jadio_encryption_vault"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
@@ -0,0 +1 @@
1
+ # Entry point for CLI