Metadata-Version: 2.4
Name: django-cravensworth
Version: 0.1.1a11
Summary: A Django app for experimentation.
Author: Daniel Merritt
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://tbd.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=4.2
Requires-Dist: rapidhash>=0.1.0
Requires-Dist: setuptools-scm>=8.3.1
Requires-Dist: simpleeval>=1.0.3
Dynamic: license-file

# django-cravensworth

django-cravensworth is a Django app for feature flags.

## Quick start

1. Add "cravensworth" to your INSTALLED_APPS setting like this::

    ```python
    INSTALLED_APPS = [
        ...,
        "cravensworth",
    ]
    ```
2. TODO

## Documentation

Documentation lives in the `docs/` directory and is written using markdown. To
build the docs, install dev dependencies then run the build command:

```shell
mkdocs build
```

To run the docs server for local development and viewing, run the serve command:

```shell
mkdocs serve
```
