microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/1637-d-skill-paths

Branches

Tags

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

Clone

HTTPS

Download ZIP

scripts/evals/moderation/pyproject.toml

32lines · modecode

1[project]
2name = "hve-core-moderation"
3version = "1.0.0"
4description = "Content moderation tooling for eval input/output screening"
5requires-python = ">=3.11"
6
7[tool.ruff]
8line-length = 120
9target-version = "py311"
10
11[tool.ruff.lint]
12select = ["E", "F", "I", "W"]
13ignore = []
14
15[tool.pytest.ini_options]
16testpaths = ["tests"]
17python_files = ["test_*.py", "fuzz_harness.py"]
18addopts = [
19 "-v",
20 "--strict-markers",
21 "--tb=short",
22]
23
24[dependency-groups]
25dev = [
26 "pytest>=8.0",
27 "pytest-mock>=3.14",
28 "ruff>=0.6",
29]
30fuzz = [
31 "atheris>=3.0",
32]
33