assertion-cli 0.4.0__tar.gz → 0.5.0__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 (29) hide show
  1. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/PKG-INFO +1 -1
  2. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/api.py +4 -1
  3. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/PKG-INFO +1 -1
  4. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/pyproject.toml +8 -1
  5. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/README.md +0 -0
  6. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/SOURCES.txt +0 -0
  7. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/dependency_links.txt +0 -0
  8. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/entry_points.txt +0 -0
  9. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/requires.txt +0 -0
  10. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/top_level.txt +0 -0
  11. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/bundle.py +0 -0
  12. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/git.py +0 -0
  13. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/link.py +0 -0
  14. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/main.py +0 -0
  15. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/models.py +0 -0
  16. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/session.py +0 -0
  17. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/setup.cfg +0 -0
  18. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/ACTIVATION.md +0 -0
  19. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/SKILL.md +0 -0
  20. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/__init__.py +0 -0
  21. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_api.py +0 -0
  22. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_bundle.py +0 -0
  23. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_decision.py +0 -0
  24. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_git.py +0 -0
  25. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_init.py +0 -0
  26. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_link.py +0 -0
  27. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_main.py +0 -0
  28. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_prompt.py +0 -0
  29. {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_session.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: assertion-cli
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: CLI for the Assertion API
5
5
  Requires-Python: >=3.13
6
6
  Description-Content-Type: text/markdown
@@ -19,7 +19,10 @@ from models import (
19
19
 
20
20
  T = TypeVar("T", bound=BaseModel)
21
21
 
22
- DEFAULT_BASE_URL = "http://localhost:8000"
22
+ # Hardcoded prod default so an installed CLI just works against
23
+ # app.tryassertion.com without an env var. Developers running against a
24
+ # local backend (or self-hosted users) override with ASSERTION_BASE_URL.
25
+ DEFAULT_BASE_URL = "https://app.tryassertion.com"
23
26
  DEFAULT_CHECKPOINT_TIMEOUT_SECONDS = 300.0
24
27
  API_TOKEN_ENV = "ASSERTION_API_TOKEN"
25
28
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: assertion-cli
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: CLI for the Assertion API
5
5
  Requires-Python: >=3.13
6
6
  Description-Content-Type: text/markdown
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "assertion-cli"
7
- version = "0.4.0"
7
+ version = "0.5.0"
8
8
  description = "CLI for the Assertion API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.13"
@@ -24,6 +24,13 @@ test = [
24
24
  [project.scripts]
25
25
  asrt = "main:app"
26
26
 
27
+ [tool.mypy]
28
+ # The type checker (zuban) runs from this directory — see prek.toml:
29
+ # `cd cli && zuban check`. Exclude setuptools build artifacts: a stale copy of
30
+ # the sources under build/ otherwise gets type-checked and fails the pre-push
31
+ # hook against symbols that were renamed or removed in the real source.
32
+ exclude = ['(^|/)build/']
33
+
27
34
  [tool.setuptools]
28
35
  py-modules = ["main", "models", "api", "git", "bundle", "session", "link"]
29
36
  packages = ["assertion_cli_templates"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes