Metadata-Version: 2.1
Name: datasette-litestream
Version: 0.0.1a4
Author: Alex Garcia
License: Apache-2.0
Project-URL: Homepage, https://github.com/datasette-io/datasette-litestream
Project-URL: Changelog, https://github.com/datasette-io/datasette-litestream/releases
Project-URL: Issues, https://github.com/datasette-io/datasette-litestream/issues
Project-URL: CI, https://github.com/datasette-io/datasette-litestream/actions
Classifier: License :: OSI Approved :: Apache Software License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: datasette >=1.0a3
Requires-Dist: prometheus-client
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-asyncio ; extra == 'test'

# datasette-litestream

[![PyPI](https://img.shields.io/pypi/v/datasette-litestream.svg)](https://pypi.org/project/datasette-litestream/)
[![Changelog](https://img.shields.io/github/v/release/asg017/datasette-litestream?include_prereleases&label=changelog)](https://github.com/asg017/datasette-litestream/releases)
[![Tests](https://github.com/asg017/datasette-litestream/workflows/Test/badge.svg)](https://github.com/asg017/datasette-litestream/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/asg017/datasette-litestream/blob/main/LICENSE)

An experimental Datasette <-> Litestream plugin.

## Installation

Install this plugin in the same environment as Datasette.

    datasette install datasette-litestream

## Usage

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

    cd datasette-litestream
    python3 -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
