veilid/veilid-python/pyproject.toml

29 lines
541 B
TOML
Raw Normal View History

2023-06-11 21:41:13 -04:00
[tool.poetry]
2023-09-02 10:41:59 -04:00
# --- Bumpversion match - do not reorder
2023-07-12 21:28:00 -04:00
name = "veilid"
2024-08-01 20:19:34 -04:00
version = "0.3.4"
2023-09-02 10:41:59 -04:00
# ---
2023-06-11 21:41:13 -04:00
description = ""
2023-07-12 21:28:00 -04:00
authors = ["Veilid Team <contact@veilid.com>"]
2023-06-11 21:41:13 -04:00
readme = "README.md"
2023-09-02 10:41:59 -04:00
packages = [{ include = "veilid" }]
2023-06-11 21:41:13 -04:00
[tool.poetry.dependencies]
python = "^3.11"
2023-06-14 16:33:14 -04:00
jsonschema = "^4.17.3"
2023-06-11 21:41:13 -04:00
[tool.poetry.group.dev.dependencies]
2023-06-14 16:33:14 -04:00
pytest = "^7.3.2"
pytest-asyncio = "^0.21.0"
2023-12-15 11:30:53 -05:00
appdirs = "^1.4.4"
2023-06-11 21:41:13 -04:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-07-22 13:06:46 -04:00
[tool.black]
line-length = 99
[tool.mypy]
2023-09-02 10:41:59 -04:00
check_untyped_defs = true