26 lines
529 B
TOML
26 lines
529 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "coinhunter-cli"
|
|
version = "0.1.0"
|
|
description = "CoinHunter trading CLI with user runtime data in ~/.coinhunter"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"ccxt>=4.4.0"
|
|
]
|
|
authors = [
|
|
{name = "Tacit Lab", email = "ouyangcarlos@gmail.com"}
|
|
]
|
|
|
|
[project.scripts]
|
|
coinhunter = "coinhunter.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|