-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
78 lines (68 loc) · 1.47 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "airobas"
description = "AI ROBustness ASsessment"
readme = "README.md"
authors = [
{email ="audrey.galametz@airbus.com"},
]
requires-python = ">=3.9"
dependencies =[
"pandas",
"keras==2.15.0",
"scikit-learn",
"smt",
"scipy",
"cleverhans",
"decomon==0.1.1",
"gurobi-machinelearning",
"maraboupy==1.0.0",
"onnx",
"ipywidgets",
"numba",
"matplotlib",
"numpy >=1.23",
]
dynamic = ["version"]
[project.urls]
documentation = "https://airbus.github.io/Airobas"
repository = "https://github.com/airbus/Airobas"
[project.optional-dependencies]
dev = ["tox>=4.6.4"]
[tool.setuptools.packages.find]
where = ["."]
include = ["airobas*"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--import-mode=importlib",
"--ignore=tests/lirpa_comparison",
"--ignore=tests/test_deel_lip.py",
]
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
ignore_missing_imports = true