Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
2026-04-17 16:57:40 +08:00
4 changed files with 366 additions and 59 deletions

View File

@@ -14,9 +14,6 @@ dependencies = [
"shtab>=1.7.0",
"tomli>=2.0.1; python_version < '3.11'",
]
authors = [
{name = "Tacit Lab", email = "ouyangcarlos@gmail.com"}
]
[project.optional-dependencies]
dev = [
@@ -27,6 +24,7 @@ dev = [
[project.scripts]
coinhunter = "coinhunter.cli:main"
coin = "coinhunter.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
@@ -36,13 +34,10 @@ where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
addopts = "-v"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "W"]
select = ["E", "F", "I", "W", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.pydocstyle]
@@ -51,7 +46,5 @@ convention = "google"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
warn_unused_ignores = true
ignore_missing_imports = true
exclude = [".venv", "build"]