29 lines
584 B
TOML
29 lines
584 B
TOML
|
[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"
|
||
|
|
||
|
[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.pytest.ini_options]
|
||
|
markers = [
|
||
|
"id_key_seed: seed to create an identity secret from",
|
||
|
"id_name: the name to use in the identity"
|
||
|
]
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|