A plugin for poetry which lets you substitute text on build.
Project description
Templating Poetry Plugin
A plugin for Poetry which lets you substitute text on build. This plugin was created to allow you to keep a single source of truth for package wide properties such as version and author.
Installation
The easiest way to install the plugin is via the self add command of Poetry.
poetry self add poetry-templating
If you used pipx to install Poetry you can add the plugin via the pipx inject command.
pipx inject poetry poetry-templating
Otherwise, if you used pip to install Poetry you can add the plugin packages via the pip install command.
pip install poetry-templating
Usage
Poetry Templating uses 'template slots' as placeholders and definitions for what they should be replaced with. Consider the following file:
__version__ = "${pyproject.tool.poetry.version}"
When evaluated, the slot will be replaced with the tool.poetry.version property from pyproject.toml, for example:
__version__ = "1.2.3"
Slots can also be used in conjunction with comments to add entire lines only present in the built package. This can be used with # templating: delete to significantly change functionality in the built package, for example:
production = false # templating: delete
# ${"production = true"}
becomes
production = true
Evaluating Templates
Poetry Templating will automatically evaluate template slots when building the package distributables with the poetry build command. You can also evaluate the project in-place by running the poetry templating evaluate command.
Constructs
Poetry Templating features a number of constructs which can be used in template slots.
Literal Construct
Denoted by quotes or double quotes, literal constructs simply replace the slot with the text within.
${"Hello World"}
becomes
Hello World
Template slots within literal constructs are also evaluated, allowing for basic string concatenation, for example:
# ${"__version__ = ${pyproject.tool.poetry.version}"}
becomes
__version__ = "1.2.3"
PyProject Construct
Allows you to refernce values from the package's pyproject.toml file.
${pyproject.tool.poetry.version}
${pyproject.tool.poetry.authors.0}
becomes
1.2.3
John Doe <john.doe@example.com
Environment Variable Construct
Allows you to reference the buildtime environment variables.
${env.HOME}
becomes
/home/example/
File Construct
Denoted with a forward slash, or ./ for relative files, the file construct gets the entire content of an arbitrary file.
${/LICENCE}
becomes
MIT License
Permission is hereby granted ...
Configuration
Poetry Templating can be configured in your pyproject.toml file under the tool.poetry-templating table.
| key | default | description |
|---|---|---|
| encoding | "utf-8" | The text encoding to use when processing files. |
| include | ["*.py"] | A list of glob patterns for files to process. |
| exclude | [] | A list of glob patterns for files not to process, has priority over include. |
Poetry Templating can also be enabled and disabled within a single file:
# templating: off
example = "${'will NOT get evaluated'}"
# templating: on
evaluated = "${'WILL get evaluated'}"
becomes
example = "${'will NOT get evaluated'}"
evaluated = "WILL get evaluated"
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file poetry_templating-1.1.2.tar.gz.
File metadata
- Download URL: poetry_templating-1.1.2.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bb794078a984e051c0ee24f3b76931ba26144b95b3c36a91667cf129da4863f
|
|
| MD5 |
ccab05544f7934b9bf07af50ddfd0b40
|
|
| BLAKE2b-256 |
3c0cfb0abf684a27c8ed5fbd267fba24d3640cac2a1f1957ce86e83f56614301
|
File details
Details for the file poetry_templating-1.1.2-py3-none-any.whl.
File metadata
- Download URL: poetry_templating-1.1.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94a81822abd3995762243dff4f34b12624d5b2df7da3113ae334ca981364be6a
|
|
| MD5 |
d1fa37f5dbd1c9ce960d2bd0dc16a8f6
|
|
| BLAKE2b-256 |
91e9241cf7837840b1903e0fb52da16786872346ef4f4ba2994a8a0ce382eeb8
|