Metadata-Version: 2.1
Name: datasette-tailwindcss
Version: 0.1
Summary: Replace default template with tailwindcss
Home-page: https://github.com/publicmatt/datasette-tailwindcss
Author: matt jensen
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/publicmatt/datasette-tailwindcss/issues
Project-URL: CI, https://github.com/publicmatt/datasette-tailwindcss/actions
Project-URL: Changelog, https://github.com/publicmatt/datasette-tailwindcss/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
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-asyncio ; extra == 'test'

# datasette-tailwindcss

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

Replace default template with tailwindcss

## Installation

Install this plugin in the same environment as Datasette.

    datasette install datasette-tailwindcss

## Usage

Usage instructions go here.

## Development

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

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

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
