-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (28 loc) · 910 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "poetry-templating"
version = "1.1.2"
description = "A plugin for poetry which lets you substitute text on build."
authors = ["NimajnebEC <nimajnebec@users.noreply.github.com>"]
repository = "https://github.com/NimajnebEC/poetry-templating"
packages = [{ include = "poetry_templating", from = "src" }]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = ">= 3.8, < 3.13"
poetry = "^1.8.0"
[tool.poetry.group.dev.dependencies]
coveralls = "^3.3.1"
pytest = "^7.4.3"
ruff = "^0.1.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."poetry.application.plugin"]
templating = "poetry_templating.plugin:TemplatingPlugin"
[tool.poetry-templating]
exclude = ["src/poetry_templating/engine.py", "tests/*"]
[tool.ruff]
line-length = 92
[tool.coverage.run]
source = ["poetry_templating"]
command_line = "-m pytest"