proxima-cli 1.0.0__tar.gz → 1.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.
Files changed (23) hide show
  1. proxima_cli-1.0.1/.gitignore +1 -0
  2. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/PKG-INFO +1 -1
  3. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/pyproject.toml +1 -1
  4. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/__init__.py +1 -1
  5. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/cli.py +11 -1
  6. proxima_cli-1.0.0/.gitignore +0 -35
  7. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/README.md +0 -0
  8. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/api.py +0 -0
  9. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/auth.py +0 -0
  10. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/__init__.py +0 -0
  11. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/agent.py +0 -0
  12. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/catalog.py +0 -0
  13. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/governance.py +0 -0
  14. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/knowledge.py +0 -0
  15. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/model.py +0 -0
  16. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/ontology.py +0 -0
  17. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/platform.py +0 -0
  18. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/routine.py +0 -0
  19. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/secret.py +0 -0
  20. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/team.py +0 -0
  21. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/toolbox.py +0 -0
  22. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/commands/workflow.py +0 -0
  23. {proxima_cli-1.0.0 → proxima_cli-1.0.1}/src/prox/config.py +0 -0
@@ -0,0 +1 @@
1
+ dist/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: proxima-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Proxima AIP CLI — manage your Proxima Intelligence platform
5
5
  Project-URL: Homepage, https://proximaintel.com/aip
6
6
  Project-URL: Documentation, https://docs.proximaintel.com/cli
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "proxima-cli"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "Proxima AIP CLI — manage your Proxima Intelligence platform"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,3 +1,3 @@
1
1
  """Proxima Intelligence Platform CLI."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "1.0.1"
@@ -6,12 +6,22 @@ from rich.console import Console
6
6
  from . import __version__, auth, config
7
7
  from .commands import catalog, agent, toolbox, knowledge, secret, model, routine, workflow, governance, platform, ontology, team
8
8
 
9
+ def version_callback(value: bool):
10
+ if value:
11
+ from . import __version__
12
+ print(f"prox {__version__}")
13
+ raise typer.Exit()
14
+
9
15
  app = typer.Typer(
10
16
  name="prox",
11
- help="Proxima Intelligence Platform CLI",
17
+ help="Proxima AIP CLI",
12
18
  no_args_is_help=True,
13
19
  pretty_exceptions_enable=False,
14
20
  )
21
+
22
+ @app.callback()
23
+ def main(version: bool = typer.Option(False, "--version", "-v", callback=version_callback, is_eager=True, help="Show version")):
24
+ pass
15
25
  console = Console()
16
26
 
17
27
  # --- Command groups ---
@@ -1,35 +0,0 @@
1
- # Synthetic data (generated, ~1.3GB)
2
- agents/supply-chain/demand-forecasting/data/synthetic/
3
-
4
- # Python
5
- __pycache__/
6
- *.pyc
7
- *.pyo
8
- .venv/
9
- venv/
10
- env/
11
- *.egg-info/
12
-
13
- # Environment
14
- .env
15
- .env.local
16
-
17
- # IDE
18
- .vscode/
19
- .idea/
20
- *.swp
21
-
22
- # OS
23
- .DS_Store
24
- Thumbs.db
25
-
26
- # Original reference docs (large PDFs, keep .md conversions only)
27
- docs/reference/daimler/*.pdf
28
- docs/reference/daimler/*.pptx
29
- docs/reference/daimler/*.docx
30
- docs/reference/daimler/*.msg
31
- docs/reference/daimler/*.xlsx
32
- docs/reference/daimler/*.zip
33
- docs/reference/daimler/SAP Proposal - Supply Chain RFP/*.pdf
34
- docs/reference/daimler/SAP Proposal - Supply Chain RFP/*.xlsx
35
- platform/data/secrets.json
File without changes
File without changes