Skip to main content

Load declarative tasks for doit from TOML, JSON, YAML, and other files.

Project description

doitoml

Load declarative tasks for doit from TOML, JSON, YAML, and other files.

docs install build
docs install from pypi install from conda-forge build

See the full documentation for more information.

Install

pip conda (or mamba, micromamba)
pip install doitoml conda install -c conda-forge doitoml

Features

  • declarative automation in a single pyproject.toml, or...
    • other well-known configuration paths like package.json
    • any number of namespaced TOML, JSON, YAML files
      • from any key inside them
    • augment and simplify existing dodo.py workflows
  • reuse and transform paths and shell tokens
    • use globs and transforms to capture relationships between transformed files
  • flexibly configure environment variables
  • user-defined Python-based actions and up-to-date checkers
  • control the working directory and log paths of processes and actions
  • use templates like Jinja2 and JSON-e for advanced use cases
  • extensibility in any part of the task definition process
    • all core functionality implemented as entry_point-based plugins

Extras

These features require additional pip or conda packages

pip conda feature
doitoml[all] doitoml-with-all all optional features
doitoml[jinja2] doitoml-with-jinja2 Jinja2 task templates
doitoml[json-e] doitoml-with-json-e JSON-e task templates
doitoml[jsonschema] doitoml-with-jsonschema extra configuration validation
doitoml[yaml] doitoml-with-yaml YAML-based task sources

Usage

doitoml provides no additional command line abilities, and is meant to drop in to the existing doit run CLI and other commands.

A Simple Example

Note

The doitoml GitHub repository has many examples of different configurations, including the project's own pyproject.toml and package.json.

The full documentation includes more information about building concise, declarative, reproducible tasks for your project.

The simplest way to use doitoml needs only a pyproject.toml, which doit will already check for configuration data.

# pyproject.toml
[project.optional-dependencies]
dev = ["doitoml"]

[tool.doit]
loader = "doitoml"
verbosity = 2

[tool.doitoml.tasks.hello]
actions = ['echo "Hello World!"']

After installing the dev extra dependency...

pip install -e .[dev]

... and running ...

doit

... you would see ...

.  hello:
Hello World!

Alternatives

If you don't like doitoml, or doit, or even Python, no worries! But please consider trying one of these lovely alternatives before giving up and making your team do everything The Hard Way:

Free Software

doitoml is licensed under the BSD-3-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

doitoml-0.2.0.tar.gz (84.0 kB view hashes)

Uploaded Source

Built Distribution

doitoml-0.2.0-py3-none-any.whl (45.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page