- Add `coin` entry-point alias alongside `coinhunter` - Add short aliases for all commands (e.g., a/acc, m, opp/o, b, s) - Flatten `buy` and `sell` to top-level commands; remove `trade` parent - Add `--doc` flag to print output schema and field descriptions per command - Update README and tests - Bump version to 2.1.0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "coinhunter"
|
|
version = "2.1.0"
|
|
description = "Binance-first trading CLI for balances, market data, opportunity scanning, and execution."
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"binance-connector>=3.9.0",
|
|
"shtab>=1.7.0",
|
|
"tomli>=2.0.1; python_version < '3.11'",
|
|
]
|
|
authors = [
|
|
{name = "Tacit Lab", email = "ouyangcarlos@gmail.com"}
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"ruff>=0.5.0",
|
|
"mypy>=1.10.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
coinhunter = "coinhunter.cli:main"
|
|
coin = "coinhunter.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py310"
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "W"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|
|
ignore_missing_imports = true
|
|
exclude = [".venv", "build"]
|