rnsh/pyproject.toml

27 lines
554 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.1"
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]
2023-02-11 14:37:33 +00:00
python = "^3.9"
2023-02-11 03:39:30 +00:00
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'
2023-02-11 02:46:22 +00:00
2023-02-11 03:39:30 +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"
black = "^23.1.0"
2023-02-11 13:38:35 +00:00
2023-02-11 03:39:30 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"