Metadata-Version: 2.4
Name: dp_wizard_templates
Version: 0.2.0
Summary: Code templating tools
Author-email: The OpenDP Project <info@opendp.org>
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: black
Requires-Dist: ipykernel
Requires-Dist: jupyter-client
Requires-Dist: jupytext
Requires-Dist: nbconvert
Project-URL: GitHub, https://github.com/opendp/dp-wizard-templates
Project-URL: Homepage, https://opendp.github.io/dp-wizard-templates

# DP Wizard Templates

[![pypi](https://img.shields.io/pypi/v/dp_wizard_templates)](https://pypi.org/project/dp_wizard_templates/)

DP Wizard Templates lets you use syntactically valid Python code as a template.
Templates can be filled and composed to generate entire notebooks.

See the [documentation](https://opendp.github.io/dp-wizard-templates) for more information.


## Development

### Getting Started

On MacOS:
```shell
$ git clone https://github.com/opendp/dp-wizard-templates.git
$ cd dp-wizard-templates
$ brew install python@3.10
$ python3.10 -m venv .venv
$ source .venv/bin/activate
```

You can now install dependencies:
```shell
$ pip install -r requirements-dev.txt
$ pre-commit install
$ flit install
```

Tests should pass, and code coverage should be complete (except blocks we explicitly ignore):
```shell
$ scripts/ci.sh
```

### Release

- Make sure you're up to date, and have the git-ignored credentials file `.pypirc`.
- Make one last feature branch with the new version number in the name:
  - Run `scripts/changelog.py` to update the `CHANGELOG.md`.
  - Review the updates and pull a couple highlights to the top.
  - Bump `dp_wizard/VERSION`, and add the new number at the top of the `CHANGELOG.md`.
  - Commit your changes, make a PR, and merge this branch to main.
- Update `main` with the latest changes: `git checkout main; git pull`
- Publish: `flit publish --pypirc .pypirc`

