mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-01-30 16:23:25 -05:00
35 lines
800 B
TOML
35 lines
800 B
TOML
[tool.poetry]
|
|
# --- Bumpversion match - do not reorder
|
|
name = "veilid"
|
|
version = "0.4.1"
|
|
# ---
|
|
description = "Create an application in Python using the distributed Veilid framework for private, E2EE, app-to-app communication."
|
|
authors = ["Veilid Team <contact@veilid.com>"]
|
|
readme = "README.md"
|
|
license = "MPL-2.0"
|
|
packages = [{ include = "veilid" }]
|
|
|
|
[tool.poetry.urls]
|
|
homepage = "https://veilid.com"
|
|
repository = "https://gitlab.com/veilid/veilid"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12.5"
|
|
jsonschema = "^4.17.3"
|
|
appdirs = "^1.4.4"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.3.2"
|
|
pytest-cov = "^5.0.0"
|
|
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
|