-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
41 lines (36 loc) · 1.18 KB
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
gitdb = "==4.0.7"
smmap = "==4.0.0"
GitPython = "==3.1.18"
PyYAML = "==5.3.1"
rosdiscover = {path = "./deps/rosdiscover", editable = true}
roswire = {path = "./deps/roswire", editable = true}
requests = "*"
python-dateutil = "*"
pyparsing = "==2.4.7"
pandas = "==1.3.3"
matplotlib = "==3.4.3"
numpy = "==1.21.2"
notebook = "==6.4.4"
[dev-packages]
[requires]
python_version = "3.9"
[scripts]
archive = "python scripts/archive-images.py"
list = "python scripts/list-experiments.py"
build = "python scripts/build-images.py"
check = "python scripts/check-architecture.py"
check-install = "python scripts/check-install.py"
compare = "python scripts/compare-recovered-observed.py"
observe = "python scripts/observe-system.py"
recover = "python scripts/recover-system.py"
recover-node-models = "python scripts/recover-node-models.py"
obtain-rosinstall = "python scripts/obtain-rosinstall.py"
gather-rq2 = "python scripts/gather-rq2-results.py"
rq2 = "scripts/rq2.sh"
rq3 = "scripts/rq3.sh"
help = "echo Try these commands: archive, list, build, check, compare, observe, recover, recover-node-models, gather-rq2, rq2, rq3"