From 447a74aa4150c44d948be9ee9b4e6a7f924d0738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Mon, 3 Oct 2022 21:13:02 +0200 Subject: wip: init --- pyproject.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1744abd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,30 @@ +[tool.poetry] +name = "pydanclick" +version = "0.1.0" +description = "Back and forth serialization with click and pydantic!" +authors = ["Romain Gonçalves "] +packages = [ + { include = "pydanclick" }, +] + + +[tool.poetry.dependencies] +python = "^3.10" +pydantic = "^1.9.1" +typing-extensions = "^4.3.0" + +[tool.poetry.dev-dependencies] +ipython = "^8.4.0" +flake8 = "^4.0.1" +black = "^22.6.0" +isort = "^5.10.1" + +[tool.poetry.group.dev.dependencies] +mypy = "^0.981" + +[tool.mypy] +plugins = "pydantic.mypy" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" -- cgit v1.2.3