Metadata-Version: 2.1
Name: cvxcooker
Version: 0.0.4
Summary: ...
Home-page: https://www.cvxgrp.com/boilerplate
Author: Thomas Schmelzer
Requires-Python: >=3.9.0,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: fire
Requires-Dist: jinja2
Requires-Dist: loguru
Requires-Dist: toml
Project-URL: Repository, https://github.com/cvxgrp/boilerplate
Description-Content-Type: text/markdown

# cvxcooker

[![PyPI version](https://badge.fury.io/py/cvxcooker.svg)](https://badge.fury.io/py/cvxcooker)
[![Apache 2.0 License](https://img.shields.io/badge/License-APACHEv2-brightgreen.svg)](https://github.com/cvxgrp/boilerplate/blob/master/LICENSE)
[![Downloads](https://static.pepy.tech/personalized-badge/cvxcooker?period=month&units=international_system&left_color=black&right_color=orange&left_text=PyPI%20downloads%20per%20month)](https://pepy.tech/project/cvxcooker)
[![Coverage Status](https://coveralls.io/repos/github/cvxgrp/cvxcooker/badge.png?branch=main)](https://coveralls.io/github/cvxgrp/cvxcooker?branch=main)

## What is cvxcooker?

This is code to automate the often tedious process of writing
boilerplate files such as

* README.md
* CONTRIBUTING.md
* CODE_OF_CONDUCT.md
* book/sphinx/conf.py
* book/_config.yml

All those files are created from Jinja2 templates, e.g.
the file 'book/_config.yml' is created from the template

```yaml
# Book settings
# Learn more at https://jupyterbook.org/customize/config.html

title: {{ name }}
author: {{ authors[0] }}
only_build_toc_files: true

execute:
  execute_notebooks: force
  timeout: 240

parse:
  myst_enable_extensions:
    - substitution
    - linkify
    - dollarmath
  myst_substitutions:
    book_url: {{ homepage }}

# needed for plotly
sphinx:
  config:
    html_js_files:
    - https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js

# Information about where the book exists on the web
repository:
  url: {{ repository }}
  path_to_book: book
  branch: main

# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
html:
  use_issues_button: true
  use_repository_button: true
  extra_navbar: Powered by <a href="https://jupyterbook.org">Jupyter Book</a>
  # Will be displayed underneath the left navbar.
```

The data in double curly braces is replaced by the data injected into the template.
We get the data from parsing the projects 'pyproject.toml' in the root of the repository.

Of course, we do not want to entertain the idea of having copies of all those
templates in all the repositories. Instead, we have this central repository
and every repository that wants to use this functionality adds in its Makefile
the job

```make
.PHONY: boil
boil: ## Update the boilerplate code
 @poetry run pip install cvxcooker
 @poetry run cook pyproject.toml
```

