-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 1010 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
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "nsk-backupr"
version = "0.2.1"
description = "A backup runner designed to tar up a root directory, optionally encrypt it, and upload to remote storage."
authors = ["Erik Nelson <[email protected]>"]
readme = "README.md"
packages = [
{ include = "backupr" }
]
[tool.poetry.dependencies]
python = "^3.10"
#mailgun = "^0.1.1"
click = "^8.1.3"
loguru = "^0.6.0"
kink = "^0.6.5"
#python-gnupg = "^0.5.0"
b2sdk = "^1.18.0"
pydantic = "^1.10.7"
pydantic-yaml = "^0.11.2"
munch = "^2.5.0"
pyyaml = "^6.0"
python-gnupg = "^0.5.0"
[tool.poetry.urls]
"Homepage" = "https://github.com/eriknelson/backupr"
"Repository" = "https://github.com/eriknelson/backupr"
"Bug Tracker" = "https://github.com/eriknelson/backupr/issues"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.0.0"
pytest = "^7.2.0"
pylint = "^2.15.9"
randomfiletree = "^1.2.0"
docker = "^6.0.1"
[tool.poetry.scripts]
backupr = "backupr.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"