rnsh/pyproject.toml

32 lines
789 B
TOML
Raw Normal View History

2023-02-10 21:39:30 -06:00
[tool.poetry]
2023-02-10 20:46:22 -06:00
name = "rnsh"
version = "0.0.12"
2023-02-10 20:46:22 -06:00
description = "Shell over Reticulum"
2023-02-10 21:39:30 -06:00
authors = ["acehoss <acehoss@acehoss.net>"]
license = "MIT"
2023-02-10 20:46:22 -06:00
readme = "README.md"
2023-02-10 21:39:30 -06:00
[tool.poetry.dependencies]
2023-02-11 08:37:33 -06:00
python = "^3.9"
2023-02-10 21:39:30 -06:00
docopt = "^0.6.2"
2023-03-08 16:42:09 -06:00
rns = "0.5.0" #{ git = "https://github.com/acehoss/Reticulum.git", branch = "feature/channel" } #{ path = "../Reticulum/", develop = true } #
tomli = "^2.0.1"
2023-02-10 21:39:30 -06:00
[tool.poetry.scripts]
rnsh = 'rnsh.rnsh:rnsh_cli'
2023-02-10 20:46:22 -06:00
2023-02-11 07:38:35 -06:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
2023-02-11 08:40:54 -06:00
setuptools = "^67.2.0"
2023-02-11 11:09:22 -06:00
pytest-asyncio = "^0.20.3"
safety = "^2.3.5"
2023-02-11 07:38:35 -06:00
[tool.pytest.ini_options]
markers = [
"skip_ci: marks tests that should not be run in CI builds (deselect with '-m \"not skip_ci\"')"
]
2023-02-10 21:39:30 -06:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"