diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2024-07-17 20:22:40 +0700 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-31 18:53:40 +0100 |
commit | 399c2282f97c0b6243e5ab37a788e49f4e8c9775 (patch) | |
tree | 412de9fe199b1a4cea5e028d53948107858a8ad9 /pyproject.toml | |
parent | a4b2f7583cd3553cf4e3eb09dc92ab8883b2ac78 (diff) | |
download | ssg-399c2282f97c0b6243e5ab37a788e49f4e8c9775.tar.gz ssg-399c2282f97c0b6243e5ab37a788e49f4e8c9775.tar.xz ssg-399c2282f97c0b6243e5ab37a788e49f4e8c9775.zip |
switch to flit
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/pyproject.toml b/pyproject.toml index 966da0e..34d153c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,23 @@ -[tool.poetry] +[build-system] +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" + +[project] name = "ssg" -version = "0.4.0" -description = "A basic static site generator." -authors = ["Tomasz Kramkowski <tomasz@kramkow.ski>"] -license = "MIT" +authors = [ + {name = "Tomasz Kramkowski", email = "tomasz@kramkow.ski"}, +] +classifiers = [ + "License :: OSI Approved :: MIT License", +] +dependencies = [ + "Jinja2 >=3,<4", +] +dynamic = ["description", "version"] +requires-python = "~=3.6" -[tool.poetry.dependencies] -python = "^3.11" -Jinja2 = "^3.1.2" +[tool.flit.sdist] +exclude = ["**/.gitignore"] [tool.isort] profile = "black" - - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api" |