initial commit

This commit is contained in:
2026-04-16 12:08:04 -04:00
commit f49c944efe
9 changed files with 1540 additions and 0 deletions

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "slack-cli"
version = "0.1.0"
requires-python = ">=3.12"
description = "Read Slack messages from local Chromium IndexedDB cache"
dependencies = ["dfindexeddb"]
[project.scripts]
slack-cli = "slack_cli.__main__:main"
[tool.setuptools.packages.find]
include = ["slack_cli*"]