mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
28 lines
522 B
TOML
28 lines
522 B
TOML
[tool.poetry]
|
|
# --- Bumpversion match - do not reorder
|
|
name = "veilid"
|
|
version = "0.2.1"
|
|
# ---
|
|
description = ""
|
|
authors = ["Veilid Team <contact@veilid.com>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "veilid" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
jsonschema = "^4.17.3"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.3.2"
|
|
pytest-asyncio = "^0.21.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 99
|
|
|
|
[tool.mypy]
|
|
check_untyped_defs = true
|