mirror of
https://github.com/markqvist/rnsh.git
synced 2025-03-10 09:29:34 -04:00
Work on packaging
This commit is contained in:
parent
caf33a1f5d
commit
ce225dfbcd
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
/venv/
|
/venv/
|
||||||
testconfig/
|
testconfig/
|
||||||
/.idea/
|
/.idea/
|
||||||
|
/poetry.lock
|
||||||
|
/rnsh.egg-info/
|
||||||
|
/build/
|
||||||
|
/dist/
|
||||||
|
@ -1,19 +1,21 @@
|
|||||||
[build-system]
|
[tool.poetry]
|
||||||
requires = ["setuptools>=61.0"]
|
|
||||||
build-backend = "setuptools.build_meta"
|
|
||||||
|
|
||||||
[project]
|
|
||||||
name = "rnsh"
|
name = "rnsh"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
authors = [{name="acehoss", email="acehoss@acehoss.net" }]
|
|
||||||
description = "Shell over Reticulum"
|
description = "Shell over Reticulum"
|
||||||
|
authors = ["acehoss <acehoss@acehoss.net>"]
|
||||||
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
dependencies = ["psutil","docopt","RNS"]
|
|
||||||
requires-python = ">=3.11"
|
|
||||||
|
|
||||||
[project.scripts]
|
[tool.poetry.dependencies]
|
||||||
rnsh = "rnsh.rnsh:rnsh_cli"
|
python = "^3.11"
|
||||||
|
rns = {git = "https://github.com/markqvist/Reticulum.git", rev = "3706769"}
|
||||||
|
docopt = "^0.6.2"
|
||||||
|
psutil = "^5.9.4"
|
||||||
|
|
||||||
[project.urls]
|
[tool.poetry.scripts]
|
||||||
"Homepage" = "https://github.com/acehoss/rnsh"
|
rnsh = 'rnsh.rnsh:rnsh_cli'
|
||||||
#"Bug Tracker" = "https://github.com/your_name_here/something/issues"
|
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user