earthsnake/pyproject.toml

42 lines
792 B
TOML
Raw Normal View History

2022-04-11 13:45:45 +00:00
[tool.poetry]
name = "earthsnake"
version = "0.1.0"
description = ""
authors = ["Gergely Polonkai <gergely@polonkai.eu>"]
[tool.poetry.dependencies]
python = "^3.10"
ed25519 = "^1.5"
bip39 = "^0.0.2"
2022-05-04 12:30:53 +00:00
fastjsonschema = "^2.15.3"
2022-04-11 13:45:45 +00:00
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pylint = "^2.13.5"
pytest-mock = "^3.7.0"
black = "^22.3.0"
mypy = "^0.942"
pytest-cov = "^3.0.0"
[tool.black]
skip-string-normalization = true
line-length = 100
2022-04-11 13:45:45 +00:00
[tool.pytest.ini_options]
markers = [
"id_key_seed: seed to create an identity secret from",
"id_name: the name to use in the identity"
]
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true
2022-04-11 13:45:45 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"