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.
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/PKG-INFO +1 -1
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/api.py +4 -1
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/PKG-INFO +1 -1
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/pyproject.toml +8 -1
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/README.md +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/SOURCES.txt +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/dependency_links.txt +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/entry_points.txt +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/requires.txt +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/assertion_cli.egg-info/top_level.txt +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/bundle.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/git.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/link.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/main.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/models.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/session.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/setup.cfg +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/ACTIVATION.md +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/SKILL.md +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/templates/__init__.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_api.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_bundle.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_decision.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_git.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_init.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_link.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_main.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_prompt.py +0 -0
- {assertion_cli-0.4.0 → assertion_cli-0.5.0}/tests/test_session.py +0 -0
|
@@ -19,7 +19,10 @@ from models import (
|
|
|
19
19
|
|
|
20
20
|
T = TypeVar("T", bound=BaseModel)
|
|
21
21
|
|
|
22
|
-
|
|
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
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "assertion-cli"
|
|
7
|
-
version = "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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|