19 lines
545 B
TOML
19 lines
545 B
TOML
[tool.poetry]
|
|
name = "backup-dc-from-db-cli"
|
|
version = "0.1.0"
|
|
description = "A small CLI tool to open a DeltaChat accounts directory and export it, so it can be imported by any Delta Chat client"
|
|
authors = ["missytake <missytake@systemli.org>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
deltachat-rpc-client = "^1.141.2"
|
|
deltachat-rpc-server = "^1.141.2"
|
|
|
|
[tool.poetry.scripts]
|
|
backup-dc-from-db-cli = "backup_dc_from_db_cli.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|