Implement CLI functionality and enhance README instructions

This commit is contained in:
zvspany
2026-04-29 17:31:27 +02:00
parent d17eed7314
commit 4dd83a8cda
7 changed files with 223 additions and 9 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "checkaddy"
version = "1.0.0"
description = "Terminal UI and CLI for checking public cryptocurrency address balances."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "zv" }]
dependencies = [
"requests",
"textual",
]
[project.scripts]
checkaddy = "checkaddy_app.cli:main"
[tool.setuptools.packages.find]
include = ["checkaddy_app*"]