-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (47 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
56 lines (47 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trailmark"
version = "0.1.2"
description = "Parse source code into a queryable graph of functions, classes, calls, and semantic annotations"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
authors = [
{ name = "Trail of Bits, Inc.", email = "opensource@trailofbits.com" },
]
dependencies = [
"tree-sitter>=0.25,<1.0",
"tree-sitter-language-pack>=0.13,<2.0",
"rustworkx>=0.17,<1.0",
]
[project.urls]
Homepage = "https://github.com/trailofbits/trailmark"
Repository = "https://github.com/trailofbits/trailmark"
Issues = "https://github.com/trailofbits/trailmark/issues"
[project.scripts]
trailmark = "trailmark.cli:main"
[dependency-groups]
dev = [
"hypothesis>=6.150.0",
"mutmut>=3.4.0",
"pytest>=9.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.0,<1.0",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E", "F", "I", "N", "W", "UP",
"ANN", "S", "B", "C4", "SIM",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101", "ANN401"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mutmut]
paths_to_mutate = ["src/trailmark/"]
pytest_add_cli_args_test_selection = ["tests/"]