microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ci/884-codeql-python-analysis

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/skills/experimental/powerpoint/pyproject.toml

34lines · modecode

1[project]
2name = "powerpoint-skill-tests"
3version = "0.0.0"
4requires-python = ">=3.11"
5dependencies = [
6 "python-pptx",
7 "pyyaml",
8 "cairosvg",
9 "Pillow",
10 "pymupdf",
11 "github-copilot-sdk",
12]
13
14[dependency-groups]
15dev = [
16 "pytest>=9.0",
17 "pytest-cov>=7.0",
18 "ruff>=0.15",
19]
20
21[tool.pytest.ini_options]
22testpaths = ["tests"]
23pythonpath = ["scripts"]
24markers = [
25 "integration: roundtrip integration tests",
26 "slow: tests that create full presentations",
27]
28
29[tool.ruff]
30line-length = 88
31target-version = "py311"
32
33[tool.ruff.lint]
34select = ["E", "F", "I", "W"]
35