Add basic pyproject.toml for dev and docs

Signed-off-by: Cristian Le <git@lecris.dev>
This commit is contained in:
Cristian Le 2023-07-09 21:25:15 +02:00
parent cb3f4fafeb
commit 57b2f95e27
Failed to extract signature

24
pyproject.toml Normal file
View File

@ -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 = []