23 lines
482 B
TOML
23 lines
482 B
TOML
[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*"]
|