Skip to content

Commit 69a4dbd

Browse files
committed
Rebrand as Chronicle API CLI
1 parent 24f6b68 commit 69a4dbd

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ python -m lists.v1alpha.get_list -h
5858
python -m lists.v1alpha.patch_list -h
5959
```
6060

61-
## Installing the Chronicle REST API SDK
61+
## Installing the Chronicle REST API CLI
6262

63-
Install the SDK from source
63+
Install the CLI from source
6464
```
6565
python setup.py install
6666
```
6767

68-
Alternatively, install the SDK from source using make
68+
Alternatively, install the CLI from source using make
6969
```
7070
make install
7171
```
@@ -75,9 +75,9 @@ Build the wheel file
7575
make dist
7676
```
7777

78-
## Using the Chronicle REST API SDK
78+
## Using the Chronicle REST API CLI
7979

80-
The SDK provides a unified command-line interface for Chronicle APIs.
80+
The CLI provides a unified command-line interface for Chronicle APIs.
8181
The CLI follows this pattern:
8282
```
8383
chronicle [common options] COMMAND_GROUP COMMAND [command options]
@@ -105,7 +105,7 @@ CHRONICLE_INSTANCE=your-instance-id
105105
CHRONICLE_REGION=your-region
106106
```
107107

108-
The SDK will use values from the `.env` file or a file provided with the
108+
The CLI will use values from the `.env` file or a file provided with the
109109
`--env-file` parameter. Command-line options take precedence over environment
110110
variables.
111111

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
16-
"""Setup configuration for Chronicle API SDK."""
16+
"""Setup configuration for Chronicle API CLI."""
1717

1818
from setuptools import find_packages
1919
from setuptools import setup
2020

2121
setup(
22-
name="chronicle-api",
22+
name="chronicle-api-cli",
2323
version="0.1.3",
24-
description="Chronicle API SDK and CLI",
24+
description="Chronicle API CLI",
2525
author="Google LLC",
2626
author_email="chronicle-support@google.com",
2727
packages=find_packages(include=[

0 commit comments

Comments
 (0)