From 8c9ee2c18f8b0156db27a97d2c241a30fdd05365 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Fri, 16 Jun 2023 15:22:05 +0100 Subject: Initial release, 0.3.0 --- pyproject.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7af6380 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "ssg" +version = "0.3.0" +description = "A basic static site generator." +authors = ["Tomasz Kramkowski "] +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" -- cgit v1.2.3-54-g00ecf