forked from dlshriver/dnnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (75 loc) · 1.76 KB
/
pyproject.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[project]
name = "dnnv"
authors = [{ name = "David Shriver", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.7"
dynamic = ["version", 'description']
keywords = ["DNN", "neural network", "verification"]
dependencies = [
"lark~=1.0",
"numpy>=1.20,<1.22",
"onnx>=1.8,<1.11",
"psutil~=5.6",
"scikit-image>=0.18,<0.19",
"scipy~=1.7",
"tensorflow>=2.2,<2.8",
]
[project.optional-dependencies]
all = [
# default
"lark~=1.0",
"numpy>=1.20,<1.22",
"onnx>=1.8,<1.11",
"psutil~=5.6",
"scikit-image>=0.18,<0.19",
"scipy~=1.7",
"tensorflow>=2.2,<2.8",
# test
"coverage~=5.5",
"pytest~=6.2",
"onnxruntime~=1.8",
"torch~=1.5",
"torchvision~=0.6",
# dev
"black~=21.7b0",
"mypy~=0.910",
# docs
"sphinx",
"furo",
]
test = [
"coverage~=5.5",
"pytest~=6.2",
"onnxruntime~=1.8",
"torch~=1.5",
"torchvision~=0.6",
]
dev = ["black~=21.7b0", "mypy~=0.910"]
docs = ["sphinx", "furo"]
[project.urls]
Documentation = "https://dnnv.readthedocs.io/en/latest/"
Source = "https://github.com/dlshriver/dnnv"
[project.scripts]
dnnv = "dnnv.__main__:_main"
dnnv_manage = "dnnv._manage.__main__:_main"
[tool.coverage.run]
branch = true
# command_line = "-m pytest tests/unit_tests tests/system_tests --ff --verbose --import-mode=importlib"
command_line = "-m pytest"
parallel = true
source = ["dnnv"]
omit = [
"dnnv/__main__.py",
"dnnv/cli/*",
"dnnv/logging_utils/*",
"dnnv/_manage/*",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ff --verbose --import-mode=importlib"
testpaths = ["tests"]