microsoft/hve-core
Publicmirrored from https://github.com/microsoft/hve-coreAvailable
.github/skills/experimental/mural/pyproject.toml
41lines · modecode
| 1 | [project] |
| 2 | name = "mural-skill" |
| 3 | version = "0.0.0" |
| 4 | requires-python = ">=3.11" |
| 5 | dependencies = [ |
| 6 | "shapely>=2.0", |
| 7 | "networkx>=3.0", |
| 8 | "keyring>=24.0", |
| 9 | ] |
| 10 | |
| 11 | [dependency-groups] |
| 12 | dev = [ |
| 13 | "pytest>=9.0", |
| 14 | "pytest-cov>=7.0", |
| 15 | "ruff>=0.15", |
| 16 | "pytest-mock>=3.12", |
| 17 | "keyrings.alt>=5.0", |
| 18 | ] |
| 19 | # Atheris ships manylinux-only wheels; keep separate from dev so uv sync works on macOS. |
| 20 | fuzz = [ |
| 21 | "atheris>=3.0", |
| 22 | ] |
| 23 | |
| 24 | [tool.pytest.ini_options] |
| 25 | testpaths = ["tests"] |
| 26 | pythonpath = ["scripts"] |
| 27 | python_files = ["test_*.py", "fuzz_harness.py"] |
| 28 | |
| 29 | [tool.ruff] |
| 30 | line-length = 88 |
| 31 | target-version = "py311" |
| 32 | |
| 33 | [tool.ruff.lint] |
| 34 | select = ["E", "F", "I", "W"] |
| 35 | |
| 36 | [tool.pyright] |
| 37 | include = ["tests", "scripts"] |
| 38 | extraPaths = ["scripts"] |
| 39 | pythonVersion = "3.11" |
| 40 | venvPath = "." |
| 41 | venv = ".venv" |
| 42 | |