Python implementation of [Earthstar](https://earthstar-project.org/)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
827 B
42 lines
827 B
[tool.poetry] |
|
name = "earthsnake" |
|
version = "0.1.0" |
|
description = "" |
|
authors = ["Gergely Polonkai <gergely@polonkai.eu>"] |
|
include = ["earthsnake/py.typed"] |
|
|
|
[tool.poetry.dependencies] |
|
python = "^3.10" |
|
bip39 = "^0.0.2" |
|
fastjsonschema = "^2.15.3" |
|
PyNaCl = "^1.5.0" |
|
|
|
[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 |
|
|
|
[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 |
|
|
|
[build-system] |
|
requires = ["poetry-core>=1.0.0"] |
|
build-backend = "poetry.core.masonry.api"
|
|
|