Metadata-Version: 2.1
Name: astro-sql-cli
Version: 0.2.3a0
Summary: Empower analysts to build workflows to transform data using SQL
License: Apache-2.0
Keywords: sql,transform,analyst,workflow,airflow,astronomer
Author: Astronomer
Author-email: humans@astronomer.io
Requires-Python: >=3.8,<3.11
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Apache Airflow
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Database
Requires-Dist: Jinja2 (>=2.10.1,<=3.1)
Requires-Dist: PyYAML (>=5.4.1)
Requires-Dist: apache-airflow (>2.1)
Requires-Dist: astro-sdk-python[all] (>=1.2.2,<2.0.0)
Requires-Dist: black
Requires-Dist: networkx (>=2.6.3,<3.0.0); python_version < "3.8"
Requires-Dist: networkx (>=2.8.7,<3.0.0); python_version >= "3.8"
Requires-Dist: python-dotenv (>=0.21.0,<0.22.0)
Requires-Dist: python-frontmatter (>=1.0.0,<2.0.0)
Requires-Dist: typer[all] (>=0.6.1,<0.7.0)
Description-Content-Type: text/markdown

# Astro SQL CLI

Empower analysts to build workflows to transform data using SQL.

Find out more in the [docs](https://docs.astronomer.io/astro/cli/sql-cli).

## Getting started

### Install

```bash
    pip install astro-sql-cli
```

### Try it out

```bash
    flow version
```


## Development

Setup your local environment:

```bash
    make setup
```

Try your own version of the SQL CLI locally:

```bash
    poetry run flow version
```

Run the tests:

```bash
    make test
```

