diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-06-16 15:22:05 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-06-16 15:22:05 +0100 |
commit | 8c9ee2c18f8b0156db27a97d2c241a30fdd05365 (patch) | |
tree | 2e6cc6a3501df97ac42a82851128d4fa2953da75 /pyproject.toml | |
parent | bb95a1b2eb593912899356e71a138c324f6b9110 (diff) | |
download | ssg-8c9ee2c18f8b0156db27a97d2c241a30fdd05365.tar.gz ssg-8c9ee2c18f8b0156db27a97d2c241a30fdd05365.tar.xz ssg-8c9ee2c18f8b0156db27a97d2c241a30fdd05365.zip |
Initial release, 0.3.0v0.3.0
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 18 |
1 files changed, 18 insertions, 0 deletions
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 <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" |