cliops 1.0.3__py3-none-any.whl → 1.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cliops
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
6
  Author: CliOps Development Team
@@ -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 -e .
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-1.0.3.data/scripts/post_install.py,sha256=JS1QTVN_DlozPi01OTQGqdN59zNjS_Z38BcRMD00hQw,459
4
- cliops-1.0.3.dist-info/licenses/LICENSE,sha256=2J5KKebeJ2AdMaxuYA1fX0ZuDs9MmWp3cpjZX-JqrZs,1079
3
+ cliops-1.0.4.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-1.0.3.dist-info/METADATA,sha256=3cNObmVrj8Gq_rPMSXaaRKc14cYZY_EgSZlHSm4YbPE,3818
12
- cliops-1.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- cliops-1.0.3.dist-info/entry_points.txt,sha256=F8ZncVlnk83ELj0TGXUYS-qYvmaP-owQyU20I7jRefg,37
14
- cliops-1.0.3.dist-info/top_level.txt,sha256=dV-NRp_bb_IkCFfEXDbA1mHA5SshVNbUsxaF809itG8,18
15
- cliops-1.0.3.dist-info/RECORD,,
10
+ cliops-1.0.4.dist-info/METADATA,sha256=pL001nFOXB0InOO_C96m4xXh6ziKs3m3WUSoS0i57oA,4083
11
+ cliops-1.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ cliops-1.0.4.dist-info/entry_points.txt,sha256=F8ZncVlnk83ELj0TGXUYS-qYvmaP-owQyU20I7jRefg,37
13
+ cliops-1.0.4.dist-info/top_level.txt,sha256=dV-NRp_bb_IkCFfEXDbA1mHA5SshVNbUsxaF809itG8,18
14
+ cliops-1.0.4.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