summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 966da0ea04fe12975f21b90ac2c78c83ad6b1a57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tool.poetry]
name = "ssg"
version = "0.4.0"
description = "A basic static site generator."
authors = ["Tomasz Kramkowski <tomasz@kramkow.ski>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.11"
Jinja2 = "^3.1.2"

[tool.isort]
profile = "black"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"