Implement CLI functionality and enhance README instructions
This commit is contained in:
22
pyproject.toml
Normal file
22
pyproject.toml
Normal 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*"]
|
||||
Reference in New Issue
Block a user