[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "coinhunter" version = "1.0.0" description = "CoinHunter trading CLI with user runtime data in ~/.coinhunter" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" dependencies = [ "ccxt>=4.4.0" ] authors = [ {name = "Tacit Lab", email = "ouyangcarlos@gmail.com"} ] [project.optional-dependencies] dev = ["pytest>=8.0", "ruff>=0.4.0", "mypy>=1.0"] [project.scripts] coinhunter = "coinhunter.cli:main" [tool.setuptools] package-dir = {"" = "src"} [tool.setuptools.packages.find] where = ["src"] [tool.ruff] line-length = 120 target-version = "py310" [tool.ruff.lint] select = ["E", "F", "W", "I"] ignore = ["E501"] [tool.mypy] python_version = "3.10" warn_return_any = true warn_unused_configs = true ignore_missing_imports = true