122158415a
* chore(release): v3.3.2 * chore(release): sync uv.lock for 3.3.2 --------- Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
38 lines
648 B
TOML
38 lines
648 B
TOML
[project]
|
|
name = "last30days-skill"
|
|
version = "3.3.2"
|
|
description = "Multi-source last-30-days research skill"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.3,<10",
|
|
"pytest-cov>=7,<8",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
addopts = [
|
|
"-q",
|
|
"--tb=short",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
branch = true
|
|
source = ["skills/last30days/scripts", "tests"]
|
|
omit = [
|
|
"skills/last30days/scripts/lib/vendor/*",
|
|
"dist/*",
|
|
]
|
|
|
|
[tool.coverage.report]
|
|
skip_empty = true
|
|
show_missing = true
|
|
omit = [
|
|
"skills/last30days/scripts/lib/vendor/*",
|
|
"dist/*",
|
|
]
|