Keep toml configuration centralized and personalizable
Project description
drytoml
Keep your toml configuration centralized and personalizable.
Through drytoml
, TOML files can have references to any content from another TOML file.
References work with relative/absolute paths and urls, and can point to whole files, a
specific table, or in general anything reachable by a sequence of getitem
calls, like
["tool", "poetry", "source", 0, "url"]
. drytoml
takes care of transcluding the
content for you.
Inspired by flakehell and
nitpick, the main motivation behind drytoml
is to
have several projects sharing a common, centralized configuration defining codestyles,
but still allowing granular control when required.
This is a deliberate departure from nitpick, which works as a linter instead, ensuring your local files have the right content.
Usage
drytoml
has two main usages:
-
Use a file as a reference and "build" the resulting one:
# contents of pyproject.dry.toml ... [tool.black] __extends = "../../common/black.toml" target-version = ['py37'] include = '\.pyi?$' ...
# contents of ../../common/black.toml [tool.black] line-length = 100
$ dry export --file=pyproject.dry.toml > pyproject.toml
# contents of pyproject.toml [tool.black] line-length = 100 target-version = ['py37'] include = '\.pyi?$'
-
Use included wrappers, allowing you to use references in your current configuration without changing any file:
Consider the original
pyproject.dry.toml
from the example above, an alternative usage fordrytoml
is shown next. Instead of this:$ black . All done! ✨ 🍰 ✨ 14 files left unchanged.
You would run this:
$ dry black reformatted /path/to/cwd/file_with_potentially_long_lines.py reformatted /path/to/cwd/another_file_with_potentially_long_lines.py All done! ✨ 🍰 ✨ 2 files reformatted, 12 files left unchanged.
What just happened?
drytoml
comes with a set of wrappers which- Create a transcluded temporary file, equivalent to the resulting
pyproject.toml
in the example above - Configure the wrapped tool (
black
in this case) to use the temporary file - Run
black
, and get rid of the file on exit.
- Create a transcluded temporary file, equivalent to the resulting
For the moment, the following wrappers are available (more to come, contributions are welcome):
In the works:
- docformatter
- pytest
Notes
Although the flakehell project was archived, we're keeping a fork alive from here, availabe as flakeheaven in pypi.
Setup
Prerequisites
- A compatible python >3.6.9
- [recommended] virtualenv
- A recent
pip
Install
Install as usual, with pip
, poetry
, etc:
pip install drytoml
poetry add drytoml
(probably you'll wantpoetry add --dev drytoml
instead)
Usage
For any command , run --help
to find out flags and usage.
Some of the most common are listed below:
- Use any of the provided wrappers as a subcommand, eg
dry black
instead ofblack
. - Use
dry -q export
and redirect to a file, to generate a new file with transcluded contents - Use
dry cache
to manage the cache for remote references.
FAQ
Q: I want to use a different key to trigger transclusions
A: In cli mode (using the dry
command), you can pass the --key
flagcli, to change
it. In api mode (from python code), initialize drytoml.parser.Parser
using a
custom value for the extend_key
kwarg.
Q: I changed a referenced toml upstream (eg in github) but still get the same result.
A: Run dry cache clear --help
to see available options.
Contribute
Start by creating an issue, forking the project and creating a Pull Request.
Setting up the development environment
If you have docker, the easiest way is to use the provided devcontainer inside vscode,
which already contains everything pre-installed. You must open the cloned directory
using the remote-containers extension.
Just run poetry shell
or prepend any command with poetry run
to ensure commands
are run inside the virtual environment.
Alternatively, you can use poetry: poetry install -E dev
The next steps assume you have already activated the venv.
Committing
-
Commits in every branch must adhere to Conventional Commits. Releases are done automatically and require conventional commits messages compliance.
-
To validate commits, you can install the pre-commit hook
pre-commit install --hook-type commit-msg
-
With venv activated, you can commit using
cz commit
instead ofgit commit
to ensure compliance.
Running checks
You can look at the different actions defined in .github/workflows
. There are three
ways to check your code:
-
Remotely, by pushing to an open PR. You'll se the results in the PR page.
-
Manually, executing the check from inside a venv
For example, to generate the documentation, check
.github/workflows/docs
. To run theBuild with Sphinx
step:sphinx-build docs/src docs/build
Or to run pytest, from
.github/workflows/tests.yml
:sphinx-build docs/src docs/build
... etc
-
Locally, with act (Already installed in the devcontainer)
For example, to emulate a PR run for the tests workflow:
act -W .github/workflows/tests.yml pull_request
TODO
Check out current development here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file drytoml-0.2.7.tar.gz
.
File metadata
- Download URL: drytoml-0.2.7.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b66abd2c784be04c9f5b784d7ceb8ff8f5baf69ef7a44baccaa7c2c3b26f9fe6 |
|
MD5 | 69b293d768bffdbe5036c7aec3b5c59b |
|
BLAKE2b-256 | d8f84d32a5591277d00d4d9326a123246dc124206e1aa27c98c3dadf78d327c1 |
File details
Details for the file drytoml-0.2.7-py3-none-any.whl
.
File metadata
- Download URL: drytoml-0.2.7-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.9.1 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad27be2562cb2fab78077e1a0cde0144a02345e553f073ee59daa01c99965dca |
|
MD5 | aa12eb73440020a38144151168994878 |
|
BLAKE2b-256 | 731bed14d5140f8138e2b18d364a9022560b9602cee6a4e6f131b879492c533c |