-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 995 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graph-surgeon"
version = "0.1.0"
description = "ONNX computational DAG reverse-engineering toolkit"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"onnx>=1.14.0",
"numpy>=1.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"onnxruntime>=1.15.0",
]
viz = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.23.0",
]
[project.scripts]
graph-surgeon = "graph_surgeon.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["graph_surgeon*"]
[tool.setuptools.package-data]
graph_surgeon = [
"taxonomy/data/*.json",
"taxonomy/data/attack_research_notes.md",
]
[tool.pytest.ini_options]
addopts = [
"--ignore=tests/test_integration.py",
"--ignore=tests/test_robustbench_cli.py",
]
markers = [
"integration: tests requiring external ONNX fixtures (GRAPH_SURGEON_FIXTURE_ROOT)",
]