From 57b2f95e27a71610b438abf3db70551493b3106d Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Sun, 9 Jul 2023 21:25:15 +0200 Subject: [PATCH] Add basic pyproject.toml for dev and docs Signed-off-by: Cristian Le --- pyproject.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f9b1eab --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,24 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "json-schema-validator-dev" +version = "0.0.0" +description = "Development environment json-schenma-validator" +readme = "README.md" +license = { file = "LICENSE" } + + +[project.optional-dependencies] +docs = [ + "sphinx >= 6.0", + "sphinx-rtd-theme", + "myst-parser", +] +dev = [ + "pre-commit", +] + +[tool.setuptools] +packages = []