Metadata-Version: 2.1
Name: datastudio-cli
Version: 0.2.5
Summary: A command line client for running DataStudio Datakits
Author-email: Varvara Efremova <varvara@echus.co>, James Wilmot <james.wilmot@pm.me>
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer<1,>=0.12
Requires-Dist: docker<8,>=7.1.0
Requires-Dist: matplotlib<4,>=3.9.1
Requires-Dist: tornado
Requires-Dist: datastudio-lib>=0.2.2
Requires-Dist: tabulate
Provides-Extra: all
Requires-Dist: datastudio-cli[development]; extra == "all"
Provides-Extra: development
Requires-Dist: pre-commit; extra == "development"
Requires-Dist: build; extra == "development"

# DataStudio datakit CLI

A command line client for running DataStudio datakits.

Usage documentation can be found [here](https://docs.datastudioapp.com).


## Development

To install and test locally, navigate to the datakit directory you want to
test.
```
cd /path/to/datakit
```

Create a virtualenv and install the CLI via pip in local mode:
```
python -m venv .venv
source .venv/bin/activate
pip install -e [/path/to/cli]
```

You can now run the CLI script with:
```
ds
```
