veilid/veilid-python/pyproject.toml

29 lines
541 B
TOML
Raw Normal View History

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