-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 829 Bytes
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 = "mondir"
version = "0.2.0"
description = "Directory/filesystem-level templating using Jinja2"
authors = ["smheidrich <smheidrich@weltenfunktion.de>"]
readme = "README.md"
homepage = "https://smheidrich.gitlab.io/mondir/"
repository = "https://gitlab.com/smheidrich/mondir"
documentation = "https://smheidrich.gitlab.io/mondir/"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
jinja2 = "^3.1.2"
jaraco-classes = "^3.2.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
mypy = "^1.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pytest-parametrization = "^2022.2.1"
black = "^23.7.0"
[tool.poetry.group.doc.dependencies]
sphinx = "^7.1.2"
insipid-sphinx-theme = "^0.4.1"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"