pyssb/pyproject.toml

47 lines
1.0 KiB
TOML
Raw Normal View History

2023-10-31 14:36:17 +00:00
[tool.poetry]
name = "ssb"
version = "0.1.0"
description = "Secure Scuttlebutt library in Python"
authors = ["PyScuttleButt Contributors <pedro@dete.st>"]
license = "MIT"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
async_generator = "^1.8"
PyNaCl = "^1.1.0"
PyYAML = { version = "^4.2b3", allow-prereleases = true }
secret-handshake = { version = "0.1.0.dev3", allow-prereleases = true }
simplejson = "3.16.0"
colorlog = "^6.7.0"
[tool.poetry.group.dev.dependencies]
check-manifest = "^0.39"
coverage = "^7.3.2"
2023-10-31 14:36:17 +00:00
isort = "^4.3.20"
pep257 = "^0.7.0"
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
2023-10-31 14:36:17 +00:00
[tool.poetry.group.docs.dependencies]
Sphinx = "^2.1.1"
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 70
omit = ["examples/*"]
2023-10-31 14:36:17 +00:00
[tool.pytest.ini_options]
addopts = ["--cov=.", "--no-cov-on-fail"]
2023-10-31 14:36:17 +00:00
python_files = ["ssb/tests/test_*.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"