mirror of
https://github.com/markqvist/rnsh.git
synced 2024-10-01 01:15:37 -04:00
29 lines
585 B
TOML
29 lines
585 B
TOML
[tool.poetry]
|
|
name = "rnsh"
|
|
version = "0.0.1"
|
|
description = "Shell over Reticulum"
|
|
authors = ["acehoss <acehoss@acehoss.net>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
rns = {git = "https://github.com/markqvist/Reticulum.git", rev = "3706769"}
|
|
docopt = "^0.6.2"
|
|
psutil = "^5.9.4"
|
|
|
|
[tool.poetry.scripts]
|
|
rnsh = 'rnsh.rnsh:rnsh_cli'
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.2.1"
|
|
flake8 = "^6.0.0"
|
|
bandit = "^1.7.4"
|
|
isort = "^5.12.0"
|
|
safety = "^2.3.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|