microsoft/hve-core

Public

mirrored from https://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
docs/update-npm-script

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/skills/experimental/mural/pyproject.toml

41lines · modecode

1[project]
2name = "mural-skill"
3version = "0.0.0"
4requires-python = ">=3.11"
5dependencies = [
6 "shapely>=2.0",
7 "networkx>=3.0",
8 "keyring>=24.0",
9]
10
11[dependency-groups]
12dev = [
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.
20fuzz = [
21 "atheris>=3.0",
22]
23
24[tool.pytest.ini_options]
25testpaths = ["tests"]
26pythonpath = ["scripts"]
27python_files = ["test_*.py", "fuzz_harness.py"]
28
29[tool.ruff]
30line-length = 88
31target-version = "py311"
32
33[tool.ruff.lint]
34select = ["E", "F", "I", "W"]
35
36[tool.pyright]
37include = ["tests", "scripts"]
38extraPaths = ["scripts"]
39pythonVersion = "3.11"
40venvPath = "."
41venv = ".venv"
42