rnsh/pyproject.toml

31 lines
642 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"
2024-05-11 13:16:18 +02:00
version = "0.1.4"
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]
python = "^3.7"
rns = ">=0.7.4"
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"
tomli = "^2.0.1"
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"