-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdub.json
40 lines (40 loc) · 1.1 KB
/
dub.json
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
{
"name": "numir",
"authors": [
"Shigeki Karita",
"John Michael Hall",
"Ilya Yaroshenko"
],
"description": "numpy-like API wrappers of mir",
"dependencies": {
"mir-random": ">=2.0.0 <4.0.0",
"mir-algorithm": ">=3.8.4"
},
"copyright": "Copyright © 2017, karita",
"license": "BSL-1.0",
"-ddoxTool": "scod",
"-ddoxFilterArgs": [
"--ex", "mir.",
"--unittest-examples"
],
"buildTypes": {
"unittest-python": {
"buildOptions": ["unittests", "debugMode", "debugInfo"],
"preBuildCommands": ["cd test && python test_npy_fileio.py || true ; cd .."]
},
"unittest-python-cov": {
"buildOptions": ["unittests", "coverage", "debugMode", "debugInfo"],
"preBuildCommands": ["cd test && python test_npy_fileio.py || true ; cd .."]
}
},
"configurations": [
{
"name": "library",
"targetType": "library"
},
{
"name": "sourceLibrary",
"targetType": "sourceLibrary"
}
]
}