From 441941fb19b08cb95785a559c5c41fc40018b414 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 10 Nov 2023 17:41:58 +0100 Subject: [PATCH] Last vestiges of setup.py --- implementations/python/Makefile | 2 +- implementations/python/pyproject.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/implementations/python/Makefile b/implementations/python/Makefile index b7a5c12..74488ed 100644 --- a/implementations/python/Makefile +++ b/implementations/python/Makefile @@ -37,4 +37,4 @@ publish: clean build twine upload dist/* build: build-docs - python3 setup.py sdist bdist_wheel + python3 -m build diff --git a/implementations/python/pyproject.toml b/implementations/python/pyproject.toml index 3c9d16f..187fa91 100644 --- a/implementations/python/pyproject.toml +++ b/implementations/python/pyproject.toml @@ -24,12 +24,14 @@ Issues = "https://gitlab.com/preserves/preserves/-/issues" [project.optional-dependencies] dev = [ + "build", "coverage", "mkdocs", "mkdocstrings[python]", "mkdocs-material", "mkdocs-macros-plugin", "mkdocs-git-revision-date-localized-plugin", + "twine", ] [tool.setuptools]