microsoft/hve-core
Publicmirrored from https://github.com/microsoft/hve-coreAvailable
.github/skills/experimental/powerpoint/pyproject.toml
50lines · modecode
| 1 | [project] |
| 2 | name = "powerpoint-skill-tests" |
| 3 | version = "0.0.0" |
| 4 | requires-python = ">=3.11" |
| 5 | dependencies = [ |
| 6 | "python-pptx", |
| 7 | "pyyaml", |
| 8 | "ruamel.yaml", # required by generate_themes.py for round-trip YAML fidelity |
| 9 | "cairosvg", |
| 10 | "Pillow", |
| 11 | "pymupdf", |
| 12 | "github-copilot-sdk", |
| 13 | ] |
| 14 | |
| 15 | [dependency-groups] |
| 16 | dev = [ |
| 17 | "pytest>=9.0", |
| 18 | "pytest-cov>=7.0", |
| 19 | "pytest-mock>=3.14", |
| 20 | "ruff>=0.15", |
| 21 | "hypothesis>=6.100", |
| 22 | ] |
| 23 | # Atheris ships manylinux-only wheels; keep separate from dev so uv sync works on macOS. |
| 24 | fuzz = [ |
| 25 | "atheris>=3.0", |
| 26 | ] |
| 27 | |
| 28 | [tool.pytest.ini_options] |
| 29 | testpaths = ["tests"] |
| 30 | pythonpath = ["scripts"] |
| 31 | python_files = ["test_*.py", "fuzz_harness.py"] |
| 32 | markers = [ |
| 33 | "integration: roundtrip integration tests", |
| 34 | "slow: tests that create full presentations", |
| 35 | "hypothesis: property-based tests using Hypothesis", |
| 36 | ] |
| 37 | |
| 38 | [tool.coverage.run] |
| 39 | source = ["scripts"] |
| 40 | |
| 41 | [tool.coverage.report] |
| 42 | fail_under = 85 |
| 43 | show_missing = true |
| 44 | |
| 45 | [tool.ruff] |
| 46 | line-length = 88 |
| 47 | target-version = "py311" |
| 48 | |
| 49 | [tool.ruff.lint] |
| 50 | select = ["E", "F", "I", "W"] |
| 51 | |