mirror of
https://github.com/markqvist/rnsh.git
synced 2024-10-01 01:15:37 -04:00
34 lines
799 B
TOML
34 lines
799 B
TOML
[tool.poetry]
|
|
name = "rnsh"
|
|
version = "0.1.2"
|
|
description = "Shell over Reticulum"
|
|
authors = ["acehoss <acehoss@acehoss.net>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
docopt = "^0.6.2"
|
|
rns = "^0.5.9"
|
|
# rns = { git = "https://github.com/acehoss/Reticulum.git", branch = "feature/channel" }
|
|
# rns = { path = "../Reticulum/", develop = true }
|
|
tomli = "^2.0.1"
|
|
|
|
[tool.poetry.scripts]
|
|
rnsh = 'rnsh.rnsh:rnsh_cli'
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.2.1"
|
|
setuptools = "^67.2.0"
|
|
pytest-asyncio = "^0.20.3"
|
|
safety = "^2.3.5"
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"skip_ci: marks tests that should not be run in CI builds (deselect with '-m \"not skip_ci\"')"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|