summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml11
1 files changed, 6 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml
index fdaa4a4..acfc6be 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,9 +1,7 @@
-[build-system]
-requires = ["flit_core >=3.2,<4"]
-build-backend = "flit_core.buildapi"
-
[project]
name = "ssg"
+version = "0.5.0"
+description = "A basic static site generator module"
requires-python = ">= 3.11"
dependencies = ["Jinja2 >= 3,< 4"]
authors = [{name = "Tomasz Kramkowski", email = "tomasz@kramkow.ski"}]
@@ -14,7 +12,6 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
-dynamic = ["description", "version"]
urls = { Source = "https://the-tk.com/cgit/ssg/" }
@@ -26,3 +23,7 @@ profile = "black"
[tool.pyright]
strict = ["**/*.py"]
+
+[build-system]
+requires = ["setuptools >= 77.0.3"]
+build-backend = "setuptools.build_meta"