sference-cli 0.0.9__tar.gz → 0.1.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.
- {sference_cli-0.0.9 → sference_cli-0.1.0}/PKG-INFO +9 -2
- {sference_cli-0.0.9 → sference_cli-0.1.0}/README.md +7 -0
- {sference_cli-0.0.9 → sference_cli-0.1.0}/pyproject.toml +2 -2
- {sference_cli-0.0.9 → sference_cli-0.1.0}/.gitignore +0 -0
- {sference_cli-0.0.9 → sference_cli-0.1.0}/LICENSE +0 -0
- {sference_cli-0.0.9 → sference_cli-0.1.0}/sference_cli/__init__.py +0 -0
- {sference_cli-0.0.9 → sference_cli-0.1.0}/sference_cli/main.py +0 -0
- {sference_cli-0.0.9 → sference_cli-0.1.0}/sference_cli/stream_cache.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sference-cli
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
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.0
|
|
24
|
+
Requires-Dist: sference-sdk>=0.1.0
|
|
25
25
|
Requires-Dist: typer>=0.24.1
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
@@ -31,6 +31,13 @@ Command-line interface for the sference batch API (`sference`). It uses the Pyth
|
|
|
31
31
|
|
|
32
32
|
## Installation
|
|
33
33
|
|
|
34
|
+
```bash
|
|
35
|
+
# One-line install (macOS / Linux)
|
|
36
|
+
curl -fsSL https://raw.githubusercontent.com/s-ference/sference/main/install.sh | sh
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Or install from PyPI:
|
|
40
|
+
|
|
34
41
|
```bash
|
|
35
42
|
uv tool install sference-cli
|
|
36
43
|
```
|
|
@@ -4,6 +4,13 @@ Command-line interface for the sference batch API (`sference`). It uses the Pyth
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
```bash
|
|
8
|
+
# One-line install (macOS / Linux)
|
|
9
|
+
curl -fsSL https://raw.githubusercontent.com/s-ference/sference/main/install.sh | sh
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Or install from PyPI:
|
|
13
|
+
|
|
7
14
|
```bash
|
|
8
15
|
uv tool install sference-cli
|
|
9
16
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sference-cli"
|
|
3
|
-
version = "0.0
|
|
3
|
+
version = "0.1.0"
|
|
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.0
|
|
26
|
+
"sference-sdk>=0.1.0",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|