Initial version with identity handling
This commit is contained in:
28
pyproject.toml
Normal file
28
pyproject.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[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"
|
Reference in New Issue
Block a user