microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.github/skills/experimental/powerpoint/pyproject.toml
34lines · 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 | "cairosvg", |
| 9 | "Pillow", |
| 10 | "pymupdf", |
| 11 | "github-copilot-sdk", |
| 12 | ] |
| 13 | |
| 14 | [dependency-groups] |
| 15 | dev = [ |
| 16 | "pytest>=9.0", |
| 17 | "pytest-cov>=7.0", |
| 18 | "ruff>=0.15", |
| 19 | ] |
| 20 | |
| 21 | [tool.pytest.ini_options] |
| 22 | testpaths = ["tests"] |
| 23 | pythonpath = ["scripts"] |
| 24 | markers = [ |
| 25 | "integration: roundtrip integration tests", |
| 26 | "slow: tests that create full presentations", |
| 27 | ] |
| 28 | |
| 29 | [tool.ruff] |
| 30 | line-length = 88 |
| 31 | target-version = "py311" |
| 32 | |
| 33 | [tool.ruff.lint] |
| 34 | select = ["E", "F", "I", "W"] |
| 35 | |