blob: 5842f7a16c6a5818d703892ae564fff7fde8d9b6 (
plain) (
tree)
|
|
[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"
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
coverage = "^6.5.0"
pdoc = "^12.2.0"
[tool.mypy]
plugins = "pydantic.mypy"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --cov -ra -q"
[tool.coverage.paths]
source = ["pydanclick"]
[tool.coverage.run]
branch = true
source = ["pydanclick"]
omit = ["*examples*"]
[tool.coverage.report]
show_missing = true
fail_under = 100
exclude_lines = ["pragma: no cover"]
[tool.black]
line-length = 80
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|