cliops 1.0.3__py3-none-any.whl → 3.2.0__py3-none-any.whl
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.
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/METADATA +9 -4
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/RECORD +6 -7
- cliops-1.0.3.data/scripts/post_install.py +0 -15
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/WHEEL +0 -0
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/entry_points.txt +0 -0
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/licenses/LICENSE +0 -0
- {cliops-1.0.3.dist-info → cliops-3.2.0.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: cliops
|
3
|
-
Version:
|
3
|
+
Version: 3.2.0
|
4
4
|
Summary: Advanced CLI tool for structured, pattern-based prompt optimization and state management
|
5
5
|
Home-page: https://github.com/cliops/cliops
|
6
|
-
Author:
|
7
|
-
Author-email:
|
6
|
+
Author: cliops by mabd
|
7
|
+
Author-email: iammabd@substack.com
|
8
8
|
Project-URL: Bug Reports, https://github.com/cliops/cliops/issues
|
9
9
|
Project-URL: Source, https://github.com/cliops/cliops
|
10
10
|
Project-URL: Documentation, https://cliops.readthedocs.io
|
@@ -65,10 +65,15 @@ A powerful CLI tool for structured, pattern-based prompt optimization and state
|
|
65
65
|
|
66
66
|
## Installation
|
67
67
|
|
68
|
+
The installer will attempt to add the necessary directory to your system's PATH. Please restart your terminal after installation for the changes to take effect.
|
69
|
+
|
68
70
|
```bash
|
69
|
-
pip install
|
71
|
+
pip install .
|
70
72
|
```
|
71
73
|
|
74
|
+
If you still have issues, you may need to add the Python scripts directory to your PATH manually.
|
75
|
+
|
76
|
+
|
72
77
|
## Quick Start
|
73
78
|
|
74
79
|
```bash
|
@@ -1,15 +1,14 @@
|
|
1
1
|
main.py,sha256=YwzFPWB6QDtjK7r9gKA9tixEgD_7_b7gXoj6Q2ETCqk,9255
|
2
2
|
presets.py,sha256=DKIfhwxtBZEC5fYHgXqhuBKou7KYQks_2M8cR3IeWao,3172
|
3
|
-
cliops-
|
4
|
-
cliops-1.0.3.dist-info/licenses/LICENSE,sha256=2J5KKebeJ2AdMaxuYA1fX0ZuDs9MmWp3cpjZX-JqrZs,1079
|
3
|
+
cliops-3.2.0.dist-info/licenses/LICENSE,sha256=2J5KKebeJ2AdMaxuYA1fX0ZuDs9MmWp3cpjZX-JqrZs,1079
|
5
4
|
core/__init__.py,sha256=aWl7MZaubJNqrafNCM5VRYg4SZ7sdifrxTWrJC8d-_s,24
|
6
5
|
core/analyzer.py,sha256=mwMmrlV-Pk31mMfKs0NPqBqY3cpNwCq_DWwGaurjPzI,4328
|
7
6
|
core/config.py,sha256=aoYCLt-EFM7WiR3_QN049_cfz9_SODuqnErte07DTVM,1388
|
8
7
|
core/optimizer.py,sha256=6hGdelQjWb71WAdXWr89EvYNinzb2gETQgaB3APuoV8,6196
|
9
8
|
core/patterns.py,sha256=BWiwb5fjQbWHLsJ68p0QbtSddFqzhYx3AeLkSY-WKbU,6464
|
10
9
|
core/state.py,sha256=BeosHqAwT3tcicaQs-gJabz2jrtwQp8t7J0ziGXv_QI,2668
|
11
|
-
cliops-
|
12
|
-
cliops-
|
13
|
-
cliops-
|
14
|
-
cliops-
|
15
|
-
cliops-
|
10
|
+
cliops-3.2.0.dist-info/METADATA,sha256=qQgDfkQjA22hTpxPFHIstR2G3gP_fHQKo29sgU4_nA4,4076
|
11
|
+
cliops-3.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
12
|
+
cliops-3.2.0.dist-info/entry_points.txt,sha256=F8ZncVlnk83ELj0TGXUYS-qYvmaP-owQyU20I7jRefg,37
|
13
|
+
cliops-3.2.0.dist-info/top_level.txt,sha256=dV-NRp_bb_IkCFfEXDbA1mHA5SshVNbUsxaF809itG8,18
|
14
|
+
cliops-3.2.0.dist-info/RECORD,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import os
|
2
|
-
import sys
|
3
|
-
from pathlib import Path
|
4
|
-
|
5
|
-
def add_to_path():
|
6
|
-
"""Add Python Scripts directory to PATH if not already present"""
|
7
|
-
scripts_dir = Path(sys.executable).parent / "Scripts"
|
8
|
-
current_path = os.environ.get('PATH', '')
|
9
|
-
|
10
|
-
if str(scripts_dir) not in current_path:
|
11
|
-
print(f"Add this to your PATH: {scripts_dir}")
|
12
|
-
print("Or run: setx PATH \"%PATH%;{}\"".format(scripts_dir))
|
13
|
-
|
14
|
-
if __name__ == "__main__":
|
15
|
-
add_to_path()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|