rnsh/pyproject.toml

32 lines
790 B
TOML
Raw Normal View History

2023-02-11 03:39:30 +00:00
[tool.poetry]
2023-02-11 02:46:22 +00:00
name = "rnsh"
version = "0.0.14"
2023-02-11 02:46:22 +00:00
description = "Shell over Reticulum"
2023-02-11 03:39:30 +00:00
authors = ["acehoss <acehoss@acehoss.net>"]
license = "MIT"
2023-02-11 02:46:22 +00:00
readme = "README.md"
2023-02-11 03:39:30 +00:00
[tool.poetry.dependencies]
python = "^3.7"
2023-02-11 03:39:30 +00:00
docopt = "^0.6.2"
rns = "^0.5.0" #{ git = "https://github.com/acehoss/Reticulum.git", branch = "feature/channel" } #{ path = "../Reticulum/", develop = true } #
tomli = "^2.0.1"
2023-02-11 03:39:30 +00:00
[tool.poetry.scripts]
rnsh = 'rnsh.rnsh:rnsh_cli'
2023-02-11 02:46:22 +00:00
2023-02-11 13:38:35 +00:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
2023-02-11 14:40:54 +00:00
setuptools = "^67.2.0"
2023-02-11 17:09:22 +00:00
pytest-asyncio = "^0.20.3"
safety = "^2.3.5"
2023-02-11 13:38:35 +00: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-11 03:39:30 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"