Work on packaging

This commit is contained in:
Aaron Heise 2023-02-10 21:39:30 -06:00
parent caf33a1f5d
commit ce225dfbcd
2 changed files with 20 additions and 14 deletions

6
.gitignore vendored
View File

@ -1,3 +1,7 @@
/venv/
testconfig/
/.idea/
/.idea/
/poetry.lock
/rnsh.egg-info/
/build/
/dist/

View File

@ -1,19 +1,21 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
[tool.poetry]
name = "rnsh"
version = "0.0.1"
authors = [{name="acehoss", email="acehoss@acehoss.net" }]
description = "Shell over Reticulum"
authors = ["acehoss <acehoss@acehoss.net>"]
license = "MIT"
readme = "README.md"
dependencies = ["psutil","docopt","RNS"]
requires-python = ">=3.11"
[project.scripts]
rnsh = "rnsh.rnsh:rnsh_cli"
[tool.poetry.dependencies]
python = "^3.11"
rns = {git = "https://github.com/markqvist/Reticulum.git", rev = "3706769"}
docopt = "^0.6.2"
psutil = "^5.9.4"
[project.urls]
"Homepage" = "https://github.com/acehoss/rnsh"
#"Bug Tracker" = "https://github.com/your_name_here/something/issues"
[tool.poetry.scripts]
rnsh = 'rnsh.rnsh:rnsh_cli'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"