summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 1744abd97039f5e65dd39f7a78aec57c2304a9ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.poetry]
name = "pydanclick"
version = "0.1.0"
description = "Back and forth serialization with click and pydantic!"
authors = ["Romain Gonçalves <me@rgoncalves.se>"]
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"
remember that computers suck.