Metadata-Version: 2.1
Name: datasette-enrichments
Version: 0.1a2
Summary: Tools for running enrichments against data stored in Datasette
Home-page: https://github.com/simonw/datasette-enrichments
Author: Simon Willison
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/simonw/datasette-enrichments/issues
Project-URL: CI, https://github.com/simonw/datasette-enrichments/actions
Project-URL: Changelog, https://github.com/simonw/datasette-enrichments/releases
Classifier: Framework :: Datasette
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: datasette>=1.0a7
Requires-Dist: WTForms
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"

# datasette-enrichments

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

Tools for running enrichments against data stored in Datasette

**PROJECT STATUS:** This is a very early alpha. The work is mainly happening in [the issues](https://github.com/simonw/datasette-enrichments/issues).

<!--

## Installation

Install this plugin in the same environment as Datasette.

    $ datasette install datasette-enrichments

## Usage

Usage instructions go here.

-->

## Development

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

    cd datasette-enrichments
    python3 -mvenv venv
    source venv/bin/activate

Or if you are using `pipenv`:

    pipenv shell

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
