sference-cli 0.1.2__tar.gz → 0.1.3__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.
- sference_cli-0.1.3/.gitignore +15 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/PKG-INFO +2 -2
- {sference_cli-0.1.2 → sference_cli-0.1.3}/pyproject.toml +2 -2
- sference_cli-0.1.2/.gitignore +0 -12
- {sference_cli-0.1.2 → sference_cli-0.1.3}/LICENSE +0 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/README.md +0 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/sference_cli/__init__.py +0 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/sference_cli/launch.py +0 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/sference_cli/main.py +0 -0
- {sference_cli-0.1.2 → sference_cli-0.1.3}/sference_cli/stream_cache.py +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Local secrets / dev overrides (e.g. cli/.env)
|
|
2
|
+
.env
|
|
3
|
+
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[cod]
|
|
6
|
+
*.egg-info/
|
|
7
|
+
dist/
|
|
8
|
+
dist-sdk/
|
|
9
|
+
dist-cli/
|
|
10
|
+
build/
|
|
11
|
+
.venv/
|
|
12
|
+
*.egg
|
|
13
|
+
.pytest_cache/
|
|
14
|
+
examples/label_studio/sample_predictions.json
|
|
15
|
+
examples/argilla/sample_suggestions.json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sference-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: sference command-line interface
|
|
5
5
|
Project-URL: Homepage, https://sference.com
|
|
6
6
|
Project-URL: Repository, https://github.com/s-ference/sference
|
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
22
|
Classifier: Topic :: Utilities
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
|
-
Requires-Dist: sference-sdk>=0.1.
|
|
24
|
+
Requires-Dist: sference-sdk>=0.1.3
|
|
25
25
|
Requires-Dist: typer>=0.24.1
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sference-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
description = "sference command-line interface"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -23,7 +23,7 @@ classifiers = [
|
|
|
23
23
|
]
|
|
24
24
|
dependencies = [
|
|
25
25
|
"typer>=0.24.1",
|
|
26
|
-
"sference-sdk>=0.1.
|
|
26
|
+
"sference-sdk>=0.1.3",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.urls]
|
sference_cli-0.1.2/.gitignore
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|