enzyme-python-package 0.4.5__tar.gz → 0.4.7__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.
- enzyme_python_package-0.4.7/PKG-INFO +62 -0
- enzyme_python_package-0.4.7/README.md +47 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package/__init__.py +2 -2
- enzyme_python_package-0.4.7/enzyme_python_package.egg-info/PKG-INFO +62 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package.egg-info/SOURCES.txt +1 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/pyproject.toml +1 -1
- enzyme_python_package-0.4.5/PKG-INFO +0 -14
- enzyme_python_package-0.4.5/enzyme_python_package.egg-info/PKG-INFO +0 -14
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package.egg-info/dependency_links.txt +0 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package.egg-info/entry_points.txt +0 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package.egg-info/top_level.txt +0 -0
- {enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/setup.cfg +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: enzyme-python-package
|
|
3
|
+
Version: 0.4.7
|
|
4
|
+
Summary: Vault intelligence — concept graph and semantic search for markdown notes
|
|
5
|
+
Author: Joshua Pham
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://enzyme.garden
|
|
8
|
+
Project-URL: Repository, https://github.com/jshph/enzyme
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: MacOS
|
|
12
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# enzyme-python-package
|
|
17
|
+
|
|
18
|
+
Pip-installable wrapper for the [enzyme](https://github.com/jshph/enzyme) binary. Auto-downloads the correct platform binary and embedding model on first run.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install enzyme-python-package
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
First run downloads the enzyme binary (~8 MB) and embedding model (~23 MB) to `~/.local/bin/enzyme`.
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
enzyme petri # vault orientation
|
|
32
|
+
enzyme catalyze "query" # semantic search
|
|
33
|
+
enzyme init # initialize a vault
|
|
34
|
+
enzyme refresh # re-index
|
|
35
|
+
enzyme status # vault stats
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
All commands proxy directly to the enzyme binary.
|
|
39
|
+
|
|
40
|
+
## Release flow
|
|
41
|
+
|
|
42
|
+
This package should be published alongside enzyme binary releases. When a new enzyme version is tagged in [jshph/enzyme](https://github.com/jshph/enzyme):
|
|
43
|
+
|
|
44
|
+
1. Update `VERSION` in `enzyme_python_package/__init__.py` to match the new tag
|
|
45
|
+
2. Update `version` in `pyproject.toml`
|
|
46
|
+
3. Run `./publish.sh`
|
|
47
|
+
|
|
48
|
+
Requires `~/.pypirc` with a PyPI token and `twine`/`build` installed (`uv tool install twine build`).
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Full publish
|
|
52
|
+
./publish.sh
|
|
53
|
+
|
|
54
|
+
# Dry run (build only)
|
|
55
|
+
./publish.sh --dry
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Supported platforms
|
|
59
|
+
|
|
60
|
+
- macOS arm64
|
|
61
|
+
- Linux x86_64
|
|
62
|
+
- Linux arm64
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# enzyme-python-package
|
|
2
|
+
|
|
3
|
+
Pip-installable wrapper for the [enzyme](https://github.com/jshph/enzyme) binary. Auto-downloads the correct platform binary and embedding model on first run.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install enzyme-python-package
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
First run downloads the enzyme binary (~8 MB) and embedding model (~23 MB) to `~/.local/bin/enzyme`.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
enzyme petri # vault orientation
|
|
17
|
+
enzyme catalyze "query" # semantic search
|
|
18
|
+
enzyme init # initialize a vault
|
|
19
|
+
enzyme refresh # re-index
|
|
20
|
+
enzyme status # vault stats
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
All commands proxy directly to the enzyme binary.
|
|
24
|
+
|
|
25
|
+
## Release flow
|
|
26
|
+
|
|
27
|
+
This package should be published alongside enzyme binary releases. When a new enzyme version is tagged in [jshph/enzyme](https://github.com/jshph/enzyme):
|
|
28
|
+
|
|
29
|
+
1. Update `VERSION` in `enzyme_python_package/__init__.py` to match the new tag
|
|
30
|
+
2. Update `version` in `pyproject.toml`
|
|
31
|
+
3. Run `./publish.sh`
|
|
32
|
+
|
|
33
|
+
Requires `~/.pypirc` with a PyPI token and `twine`/`build` installed (`uv tool install twine build`).
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Full publish
|
|
37
|
+
./publish.sh
|
|
38
|
+
|
|
39
|
+
# Dry run (build only)
|
|
40
|
+
./publish.sh --dry
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Supported platforms
|
|
44
|
+
|
|
45
|
+
- macOS arm64
|
|
46
|
+
- Linux x86_64
|
|
47
|
+
- Linux arm64
|
{enzyme_python_package-0.4.5 → enzyme_python_package-0.4.7}/enzyme_python_package/__init__.py
RENAMED
|
@@ -18,7 +18,7 @@ import tempfile
|
|
|
18
18
|
import urllib.request
|
|
19
19
|
|
|
20
20
|
REPO = "jshph/enzyme"
|
|
21
|
-
VERSION = "0.4.
|
|
21
|
+
VERSION = "0.4.5"
|
|
22
22
|
|
|
23
23
|
# Install binary to ~/.local/bin (standard user binary location)
|
|
24
24
|
_INSTALL_DIR = os.path.join(os.path.expanduser("~"), ".local", "bin")
|
|
@@ -129,7 +129,7 @@ def install() -> None:
|
|
|
129
129
|
print(f" Binary installed to {_BIN_PATH}")
|
|
130
130
|
|
|
131
131
|
# Download embedding model
|
|
132
|
-
print(" Downloading embedding model (~
|
|
132
|
+
print(" Downloading embedding model (~23 MB)...")
|
|
133
133
|
subprocess.run(
|
|
134
134
|
[_BIN_PATH, "setup"],
|
|
135
135
|
timeout=120,
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: enzyme-python-package
|
|
3
|
+
Version: 0.4.7
|
|
4
|
+
Summary: Vault intelligence — concept graph and semantic search for markdown notes
|
|
5
|
+
Author: Joshua Pham
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://enzyme.garden
|
|
8
|
+
Project-URL: Repository, https://github.com/jshph/enzyme
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: MacOS
|
|
12
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# enzyme-python-package
|
|
17
|
+
|
|
18
|
+
Pip-installable wrapper for the [enzyme](https://github.com/jshph/enzyme) binary. Auto-downloads the correct platform binary and embedding model on first run.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install enzyme-python-package
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
First run downloads the enzyme binary (~8 MB) and embedding model (~23 MB) to `~/.local/bin/enzyme`.
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
enzyme petri # vault orientation
|
|
32
|
+
enzyme catalyze "query" # semantic search
|
|
33
|
+
enzyme init # initialize a vault
|
|
34
|
+
enzyme refresh # re-index
|
|
35
|
+
enzyme status # vault stats
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
All commands proxy directly to the enzyme binary.
|
|
39
|
+
|
|
40
|
+
## Release flow
|
|
41
|
+
|
|
42
|
+
This package should be published alongside enzyme binary releases. When a new enzyme version is tagged in [jshph/enzyme](https://github.com/jshph/enzyme):
|
|
43
|
+
|
|
44
|
+
1. Update `VERSION` in `enzyme_python_package/__init__.py` to match the new tag
|
|
45
|
+
2. Update `version` in `pyproject.toml`
|
|
46
|
+
3. Run `./publish.sh`
|
|
47
|
+
|
|
48
|
+
Requires `~/.pypirc` with a PyPI token and `twine`/`build` installed (`uv tool install twine build`).
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Full publish
|
|
52
|
+
./publish.sh
|
|
53
|
+
|
|
54
|
+
# Dry run (build only)
|
|
55
|
+
./publish.sh --dry
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Supported platforms
|
|
59
|
+
|
|
60
|
+
- macOS arm64
|
|
61
|
+
- Linux x86_64
|
|
62
|
+
- Linux arm64
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "enzyme-python-package"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.7"
|
|
8
8
|
description = "Vault intelligence — concept graph and semantic search for markdown notes"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: enzyme-python-package
|
|
3
|
-
Version: 0.4.5
|
|
4
|
-
Summary: Vault intelligence — concept graph and semantic search for markdown notes
|
|
5
|
-
Author: Joshua Pham
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://enzyme.garden
|
|
8
|
-
Project-URL: Repository, https://github.com/jshph/enzyme
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Classifier: Operating System :: MacOS
|
|
12
|
-
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
-
Requires-Python: >=3.9
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: enzyme-python-package
|
|
3
|
-
Version: 0.4.5
|
|
4
|
-
Summary: Vault intelligence — concept graph and semantic search for markdown notes
|
|
5
|
-
Author: Joshua Pham
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://enzyme.garden
|
|
8
|
-
Project-URL: Repository, https://github.com/jshph/enzyme
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Classifier: Operating System :: MacOS
|
|
12
|
-
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
-
Requires-Python: >=3.9
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|