diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-31 18:36:17 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-31 18:53:40 +0100 |
commit | 3d47c7681e64a79dd923d117569b7c29ae9920ea (patch) | |
tree | ee6a567698f4c5860f326dd1cb4665e5d33d11f5 /pyproject.toml | |
parent | 3e846ad2b90d20d9b8f032b02da77002802014a1 (diff) | |
download | ssg-3d47c7681e64a79dd923d117569b7c29ae9920ea.tar.gz ssg-3d47c7681e64a79dd923d117569b7c29ae9920ea.tar.xz ssg-3d47c7681e64a79dd923d117569b7c29ae9920ea.zip |
Switch to setuptools build backend
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 11 |
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" |