-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 919 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
authors = ["Pablion <36828324+Pablion@users.noreply.github.com>"]
description = "Python CLI to share secret files via github with symmetric encryption ed25519."
license = "Apache-2.0"
name = "symmetric-secret-share"
packages = [
{include = "sss_cli"},
]
readme = "README.md"
version = "0.0.8"
[tool.poetry.urls]
documentation = "https://github.com/PabloLION/symmetric-secret-share"
homepage = "https://github.com/PabloLION/symmetric-secret-share"
repository = "https://github.com/PabloLION/symmetric-secret-share"
[tool.poetry.scripts]
sss = "sss_cli.__main__:app"
symmetric-secret-share = "sss_cli.__main__:app"
[tool.poetry.dependencies]
PyNaCl = "^1.5.0"
python = "^3.9"
requests = "^2.27.1"
typer = {extras = ["all"], version = "^0.4.0"}
[tool.poetry.dev-dependencies]
black = "^22.1.0"
pytest = "^5.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]