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.
- jadio_encryption_vault-0.0.1/.gitignore +4 -0
- jadio_encryption_vault-0.0.1/LICENSE +1 -0
- jadio_encryption_vault-0.0.1/PKG-INFO +13 -0
- jadio_encryption_vault-0.0.1/README.md +3 -0
- jadio_encryption_vault-0.0.1/ai.txt +38 -0
- jadio_encryption_vault-0.0.1/pyproject.toml +21 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/__init__.py +1 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/ai/__init__.py +0 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/cli/__init__.py +0 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/cli/clicommands.json +1 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/cli/main.py +1 -0
- jadio_encryption_vault-0.0.1/src/jadio_encryption_vault/core/__init__.py +0 -0
@@ -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,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"
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
{}
|
@@ -0,0 +1 @@
|
|
1
|
+
# Entry point for CLI
|
File without changes
|