commit 8d1702091c7b74d6c1caae2b46d6f4f04060e915 Author: missytake Date: Sat Jul 13 23:20:47 2024 +0200 poetry new diff --git a/backup_dc_from_db_cli/__init__.py b/backup_dc_from_db_cli/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..123ac85 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,50 @@ +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. + +[[package]] +name = "deltachat-rpc-client" +version = "1.141.2" +description = "Python client for Delta Chat core JSON-RPC interface" +optional = false +python-versions = "*" +files = [ + {file = "deltachat_rpc_client-1.141.2-py3-none-any.whl", hash = "sha256:61349023c8b5935a8335469d9c37af74c3fb1c691ef77f1c1646174d48cf1eea"}, + {file = "deltachat_rpc_client-1.141.2.tar.gz", hash = "sha256:97d806a2d5ba789f94e4605de91b16207043ccde4fcbc0624d866eeb2efb4435"}, +] + +[package.dependencies] +imap-tools = "*" + +[[package]] +name = "deltachat-rpc-server" +version = "1.141.2" +description = "Delta Chat JSON-RPC server" +optional = false +python-versions = "*" +files = [ + {file = "deltachat-rpc-server-1.141.2.tar.gz", hash = "sha256:8bc35e995aa38c3ea3b3a72af1cd39e9506993c654d2e42e48ed347e7a2b8937"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-linux_armv6l.whl", hash = "sha256:01477025488faa12d2150c8290506e7daf0c4262f7e0070387d641c4b0585e5d"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-linux_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:2d6d8002233e66e8a391e1ed1ca65cbcca794daa844a126f7f8ef21408690697"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-macosx_10_7_x86_64.whl", hash = "sha256:53c8cd9f559eb54aa9da13ff050545ee981f94e2dc2eb5d9be790a8dabb485fb"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c8c53c5d3a0ee1c7aed95a3dc55f5bb0ba613f7da809a87765d16045ac521c1b"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-manylinux_2_12_i686.manylinux2010_i686.musllinux_1_1_i686.whl", hash = "sha256:14ef5386aab9a4492726f2a742e0cecce55db52c1d5f834d9b9cdc8628a2f449"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:24c482e2a3642b93c279e61fbb579bb1eba43ee164b570e434da5d90f152ec53"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.musllinux_1_1_x86_64.whl", hash = "sha256:77576d9d0f2a8d00046f1b8622a42990b493143297da8148350de9124a66b35c"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-win32.whl", hash = "sha256:251abddb39aafcb2308e6bfa694e6209af40ec6eee66c6d55c960af455082c93"}, + {file = "deltachat_rpc_server-1.141.2-py3-none-win_amd64.whl", hash = "sha256:a730af5e225c2d2dc1b92c4bde6e25447390880cc7b266bff296fd2e8d6d6d7a"}, +] + +[[package]] +name = "imap-tools" +version = "1.7.0" +description = "Work with email by IMAP" +optional = false +python-versions = "*" +files = [ + {file = "imap-tools-1.7.0.tar.gz", hash = "sha256:2c8208bec28a4b47fa3146f7e94862e58ed00de77131e44325527c0cbe6124b3"}, + {file = "imap_tools-1.7.0-py3-none-any.whl", hash = "sha256:bee29ab3adb21e57dffb9d7966b1169e6ffc66b5f0e7dd26bfb4bf9a95e5e028"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "8cc58c07a94f002a5c1b701285fab4f8ca4c83bcf563d630b8b2d8c6fa8604dc" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..744d354 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.poetry] +name = "backup-dc-from-db-cli" +version = "0.1.0" +description = "" +authors = ["missytake "] +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"