mirror of https://gitlab.com/KKlochko/tui-rsync
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
820 B
34 lines
820 B
[tool.poetry]
|
|
name = "tui-rsync"
|
|
version = "1.0.0"
|
|
description = "tui-rsync will help you to manage yours backups."
|
|
authors = ["Kostiantyn Klochko <kklochko@protonmail.com>"]
|
|
readme = "README.rst"
|
|
license = "GPL-3.0-or-later"
|
|
packages = [{include = "tui_rsync"}]
|
|
repository = "https://gitlab.com/KKlochko/tui-rsync"
|
|
keywords = ["tui", "cli", "rsync", "backup"]
|
|
|
|
[tool.poetry.urls]
|
|
"Bug Tracker" = "https://gitlab.com/KKlochko/tui-rsync/issues"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
rich = "^13.3.1"
|
|
typer = "^0.7.0"
|
|
peewee = "^3.15.4"
|
|
pyfzf = "^0.3.1"
|
|
platformdirs = "^3.1.1"
|
|
injector = "^0.22.0"
|
|
|
|
[tool.poetry.scripts]
|
|
tui-rsync = "tui_rsync.main:main"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
behave = "^1.2.6"
|
|
faker = "^35.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|