Metadata-Version: 2.4
Name: sqlexpr
Version: 2.2.1
Summary: A Python library for programmatically building SQL queries
License: MIT
Project-URL: Documentation, https://sqlexpr.readthedocs.io/
Project-URL: Source, https://github.com/davejohncole/sqlexpr
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# sqlexpr

A Python library for programmatically building SQL queries. It produces
well-formatted, readable SQL with proper indentation and line wrapping.

## Documentation

Full documentation is available at https://sqlexpr.readthedocs.io/.

## Development setup

```sh
git clone https://github.com/davejohncole/sqlexpr.git
cd sqlexpr
make venv
source .venv/bin/activate
make dev-deps
```

## Makefile targets

All targets except `venv` assume the virtual environment is active.

```
$ make
venv           - create virtual environment in .venv
dev-deps       - install development dependencies into .venv
doc            - build HTML documentation into doc/_build
doc-serve      - build and serve documentation at http://localhost:8000
doc-clean      - remove built documentation
test           - run unit tests
```
