vantage6 5.0.0a0__py3-none-any.whl → 5.0.0a9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of vantage6 might be problematic. Click here for more details.

Files changed (45) hide show
  1. tests_cli/test_node_cli.py +36 -25
  2. tests_cli/test_server_cli.py +33 -12
  3. tests_cli/test_wizard.py +5 -5
  4. vantage6/cli/__build__ +1 -1
  5. vantage6/cli/__init__.py +1 -1
  6. vantage6/cli/algorithm/create.py +26 -8
  7. vantage6/cli/algorithm/update.py +5 -1
  8. vantage6/cli/algostore/attach.py +6 -25
  9. vantage6/cli/algostore/new.py +9 -3
  10. vantage6/cli/cli.py +6 -11
  11. vantage6/cli/common/start.py +1 -1
  12. vantage6/cli/common/utils.py +42 -4
  13. vantage6/cli/configuration_wizard.py +63 -51
  14. vantage6/cli/context/node.py +18 -1
  15. vantage6/cli/node/attach.py +5 -62
  16. vantage6/cli/node/clean.py +6 -2
  17. vantage6/cli/node/common/__init__.py +26 -4
  18. vantage6/cli/node/create_private_key.py +10 -2
  19. vantage6/cli/node/new.py +7 -3
  20. vantage6/cli/node/restart.py +128 -0
  21. vantage6/cli/node/set_api_key.py +7 -3
  22. vantage6/cli/node/start.py +12 -4
  23. vantage6/cli/node/stop.py +7 -3
  24. vantage6/cli/node/version.py +7 -3
  25. vantage6/cli/server/attach.py +5 -51
  26. vantage6/cli/server/new.py +7 -3
  27. vantage6/cli/server/start.py +1 -1
  28. vantage6/cli/server/stop.py +7 -3
  29. vantage6/cli/template/node_config.j2 +3 -1
  30. vantage6/cli/test/common/diagnostic_runner.py +2 -4
  31. vantage6/cli/test/feature_tester.py +10 -3
  32. vantage6/cli/test/integration_test.py +113 -113
  33. vantage6/cli/utils.py +5 -1
  34. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/METADATA +5 -5
  35. vantage6-5.0.0a9.dist-info/RECORD +70 -0
  36. vantage6/cli/dev/create.py +0 -632
  37. vantage6/cli/dev/data/olympic_athletes_2016.csv +0 -2425
  38. vantage6/cli/dev/remove.py +0 -94
  39. vantage6/cli/dev/start.py +0 -123
  40. vantage6/cli/dev/stop.py +0 -47
  41. vantage6/cli/dev/utils.py +0 -24
  42. vantage6-5.0.0a0.dist-info/RECORD +0 -75
  43. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/WHEEL +0 -0
  44. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/entry_points.txt +0 -0
  45. {vantage6-5.0.0a0.dist-info → vantage6-5.0.0a9.dist-info}/top_level.txt +0 -0
@@ -1,122 +1,122 @@
1
- from pathlib import Path
2
- import click
1
+ # from pathlib import Path
2
+ # import click
3
3
 
4
- from vantage6.common.globals import Ports
5
- from vantage6.cli.utils import info
6
- from vantage6.cli.dev.create import create_demo_network
7
- from vantage6.cli.dev.start import start_demo_network
8
- from vantage6.cli.dev.stop import stop_demo_network
9
- from vantage6.cli.dev.remove import remove_demo_network
10
- from vantage6.cli.utils import prompt_config_name, check_config_name_allowed
11
- from vantage6.cli.test.feature_tester import cli_test_features
4
+ # from vantage6.common.globals import Ports
5
+ # from vantage6.cli.utils import info
6
+ # from vantage6.cli.dev.create import create_demo_network
7
+ # from vantage6.cli.dev.start import start_demo_network
8
+ # from vantage6.cli.dev.stop import stop_demo_network
9
+ # from vantage6.cli.dev.remove import remove_demo_network
10
+ # from vantage6.cli.utils import prompt_config_name, check_config_name_allowed
11
+ # from vantage6.cli.test.feature_tester import cli_test_features
12
12
 
13
13
 
14
- @click.command()
15
- @click.option(
16
- "-n", "--name", default=None, type=str, help="Name for your development setup"
17
- )
18
- @click.option(
19
- "--server-url",
20
- type=str,
21
- default="http://host.docker.internal",
22
- help="Server URL to point to. If you are using Docker Desktop, "
23
- "the default http://host.docker.internal should not be changed.",
24
- )
25
- @click.option(
26
- "-i", "--image", type=str, default=None, help="Server Docker image to use"
27
- )
28
- @click.option(
29
- "--keep",
30
- type=bool,
31
- default=False,
32
- help="Keep the dev network after finishing the test",
33
- )
34
- @click.option(
35
- "--extra-server-config",
36
- type=click.Path(exists=True),
37
- default=None,
38
- help="YAML File with additional server "
39
- "configuration. This will be appended to the server "
40
- "configuration file",
41
- )
42
- @click.option(
43
- "--extra-node-config",
44
- type=click.Path("rb"),
45
- default=None,
46
- help="YAML File with additional node configuration. This will be"
47
- " appended to each of the node configuration files",
48
- )
49
- @click.pass_context
50
- def cli_test_integration(
51
- click_ctx: click.Context,
52
- name: str,
53
- server_url: str,
54
- image: str,
55
- keep: bool = False,
56
- extra_server_config: Path = None,
57
- extra_node_config: Path = None,
58
- ) -> list[dict]:
59
- """
60
- Create dev network and run diagnostic checks on it.
14
+ # @click.command()
15
+ # @click.option(
16
+ # "-n", "--name", default=None, type=str, help="Name for your development setup"
17
+ # )
18
+ # @click.option(
19
+ # "--server-url",
20
+ # type=str,
21
+ # default="http://host.docker.internal",
22
+ # help="Server URL to point to. If you are using Docker Desktop, "
23
+ # "the default http://host.docker.internal should not be changed.",
24
+ # )
25
+ # @click.option(
26
+ # "-i", "--image", type=str, default=None, help="Server Docker image to use"
27
+ # )
28
+ # @click.option(
29
+ # "--keep",
30
+ # type=bool,
31
+ # default=False,
32
+ # help="Keep the dev network after finishing the test",
33
+ # )
34
+ # @click.option(
35
+ # "--extra-server-config",
36
+ # type=click.Path(exists=True),
37
+ # default=None,
38
+ # help="YAML File with additional server "
39
+ # "configuration. This will be appended to the server "
40
+ # "configuration file",
41
+ # )
42
+ # @click.option(
43
+ # "--extra-node-config",
44
+ # type=click.Path("rb"),
45
+ # default=None,
46
+ # help="YAML File with additional node configuration. This will be"
47
+ # " appended to each of the node configuration files",
48
+ # )
49
+ # @click.pass_context
50
+ # def cli_test_integration(
51
+ # click_ctx: click.Context,
52
+ # name: str,
53
+ # server_url: str,
54
+ # image: str,
55
+ # keep: bool = False,
56
+ # extra_server_config: Path = None,
57
+ # extra_node_config: Path = None,
58
+ # ) -> list[dict]:
59
+ # """
60
+ # Create dev network and run diagnostic checks on it.
61
61
 
62
- This is a full integration test of the vantage6 network. It will create
63
- a test server with some nodes using the `vdev` commands, and then run the
64
- v6-diagnostics algorithm to test all functionality.
65
- """
66
- # get name for the development setup - if not given - and check if it is
67
- # allowed
68
- name = prompt_config_name(name)
69
- check_config_name_allowed(name)
62
+ # This is a full integration test of the vantage6 network. It will create
63
+ # a test server with some nodes using the `vdev` commands, and then run the
64
+ # v6-diagnostics algorithm to test all functionality.
65
+ # """
66
+ # # get name for the development setup - if not given - and check if it is
67
+ # # allowed
68
+ # name = prompt_config_name(name)
69
+ # check_config_name_allowed(name)
70
70
 
71
- # create server & node configurations and create test resources (
72
- # collaborations, organizations, etc)
73
- click_ctx.invoke(
74
- create_demo_network,
75
- name=name,
76
- num_nodes=3,
77
- server_url=server_url,
78
- server_port=Ports.DEV_SERVER.value,
79
- image=image,
80
- extra_server_config=extra_server_config,
81
- extra_node_config=extra_node_config,
82
- )
71
+ # # create server & node configurations and create test resources (
72
+ # # collaborations, organizations, etc)
73
+ # click_ctx.invoke(
74
+ # create_demo_network,
75
+ # name=name,
76
+ # num_nodes=3,
77
+ # server_url=server_url,
78
+ # server_port=Ports.DEV_SERVER.value,
79
+ # image=image,
80
+ # extra_server_config=extra_server_config,
81
+ # extra_node_config=extra_node_config,
82
+ # )
83
83
 
84
- # start the server and nodes
85
- click_ctx.invoke(
86
- start_demo_network,
87
- name=name,
88
- server_image=image,
89
- node_image=image,
90
- )
84
+ # # start the server and nodes
85
+ # click_ctx.invoke(
86
+ # start_demo_network,
87
+ # name=name,
88
+ # server_image=image,
89
+ # node_image=image,
90
+ # )
91
91
 
92
- # run the diagnostic tests
93
- # TODO the username and password should be coordinated with the vdev
94
- # command - at present it spits out this username/password combination by
95
- # default but both should be defined in the same place
96
- # TODO VPN testing is always excluded - allow to include it with a flag
97
- # when vdev commands can handle extra config parameters
98
- diagnose_results = click_ctx.invoke(
99
- cli_test_features,
100
- host="http://localhost",
101
- port=Ports.DEV_SERVER.value,
102
- api_path="/api",
103
- username="dev_admin",
104
- password="password",
105
- collaboration=1,
106
- organizations=None,
107
- all_nodes=True,
108
- online_only=False,
109
- no_vpn=True,
110
- )
92
+ # # run the diagnostic tests
93
+ # # TODO the username and password should be coordinated with the vdev
94
+ # # command - at present it spits out this username/password combination by
95
+ # # default but both should be defined in the same place
96
+ # # TODO VPN testing is always excluded - allow to include it with a flag
97
+ # # when vdev commands can handle extra config parameters
98
+ # diagnose_results = click_ctx.invoke(
99
+ # cli_test_features,
100
+ # host="http://localhost",
101
+ # port=Ports.DEV_SERVER.value,
102
+ # api_path="/api",
103
+ # username="dev_admin",
104
+ # password="password",
105
+ # collaboration=1,
106
+ # organizations=None,
107
+ # all_nodes=True,
108
+ # online_only=False,
109
+ # no_vpn=True,
110
+ # )
111
111
 
112
- # clean up the test resources
113
- click_ctx.invoke(stop_demo_network, name=name)
114
- if not keep:
115
- click_ctx.invoke(remove_demo_network, name=name)
116
- else:
117
- info(
118
- f"Keeping the demo network {name}. You can start it with `v6 dev "
119
- "start-demo-network`"
120
- )
112
+ # # clean up the test resources
113
+ # click_ctx.invoke(stop_demo_network, name=name)
114
+ # if not keep:
115
+ # click_ctx.invoke(remove_demo_network, name=name)
116
+ # else:
117
+ # info(
118
+ # f"Keeping the demo network {name}. You can start it with `v6 dev "
119
+ # "start-demo-network`"
120
+ # )
121
121
 
122
- return diagnose_results
122
+ # return diagnose_results
vantage6/cli/utils.py CHANGED
@@ -90,7 +90,11 @@ def prompt_config_name(name: str | None) -> None:
90
90
  The name of the configuration
91
91
  """
92
92
  if not name:
93
- name = q.text("Please enter a configuration-name:").ask()
93
+ try:
94
+ name = q.text("Please enter a configuration-name:").unsafe_ask()
95
+ except KeyboardInterrupt:
96
+ error("Aborted by user!")
97
+ exit(1)
94
98
  if name.count(" ") > 0:
95
99
  name = name.replace(" ", "-")
96
100
  info(f"Replaced spaces from configuration name: {name}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vantage6
3
- Version: 5.0.0a0
3
+ Version: 5.0.0a9
4
4
  Summary: vantage6 command line interface
5
5
  Home-page: https://github.com/vantage6/vantage6
6
6
  Requires-Python: >=3.10
@@ -10,14 +10,14 @@ Requires-Dist: colorama==0.4.6
10
10
  Requires-Dist: copier==9.2.0
11
11
  Requires-Dist: docker==7.1.0
12
12
  Requires-Dist: ipython==8.10.0
13
- Requires-Dist: jinja2==3.1.4
13
+ Requires-Dist: jinja2==3.1.5
14
14
  Requires-Dist: pandas>=1.5.3
15
15
  Requires-Dist: questionary==1.10.0
16
16
  Requires-Dist: rich==13.5.2
17
17
  Requires-Dist: schema==0.7.5
18
- Requires-Dist: SQLAlchemy==1.4.46
19
- Requires-Dist: vantage6-common==5.0.0a0
20
- Requires-Dist: vantage6-client==5.0.0a0
18
+ Requires-Dist: sqlalchemy==2.0.37
19
+ Requires-Dist: vantage6-common==5.0.0a9
20
+ Requires-Dist: vantage6-client==5.0.0a9
21
21
  Provides-Extra: dev
22
22
  Requires-Dist: coverage==6.4.4; extra == "dev"
23
23
  Requires-Dist: black; extra == "dev"
@@ -0,0 +1,70 @@
1
+ tests_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ tests_cli/test_example.py,sha256=0fw_v-lgZEacshWSDwLNyLMA1_xc48bKUGM3ll-n1L0,146
3
+ tests_cli/test_node_cli.py,sha256=ajFdG1sTa9H7PjqK2dhcp3k59HGsJyO6ZoRfxgIUHcA,16842
4
+ tests_cli/test_server_cli.py,sha256=n8amDe9ACPrHRFlxeO85oiOheIElQ4hc72lHT8r5wcI,6544
5
+ tests_cli/test_wizard.py,sha256=NIj59eiCBuVNJXwhofrWLmLIKAsD45gSOzqOFWLmWhY,4916
6
+ vantage6/cli/__build__,sha256=GVgeJ9587QD_HOULIEfnpWfHaxy666vl7wP3wwF7tbc,1
7
+ vantage6/cli/__init__.py,sha256=ZXbeQ_-g2-M4XYteWZkoO5lMFYhqjm5doQgGy1fq8i0,125
8
+ vantage6/cli/_version.py,sha256=iDijqhgy5jzZ0LAyzW1LlXeeuMcHWMyg9D8xbXtV7Ck,696
9
+ vantage6/cli/cli.py,sha256=B0F328FSBBslwplMPk8lIlr0r-taKuCgb8v9DIdyE3Q,5699
10
+ vantage6/cli/configuration_manager.py,sha256=cN4tQpQjLG5GaGrsjEP-5ed_LqvPApIkNkM1J6ai3n0,3588
11
+ vantage6/cli/configuration_wizard.py,sha256=ifqvrVqHkxoM0ZVUVIwlYXFByzAbuVlahNjmwFGLVRU,20874
12
+ vantage6/cli/globals.py,sha256=8AWI55FBbumVQTuI1bJzKp5hiRWtiwsVgTTKqWgRBes,1616
13
+ vantage6/cli/utils.py,sha256=Jfr6IeHMQDk_wU5X7rJ1dRY118dhVVX8PwzwMYMv9Vw,2481
14
+ vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
15
+ vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf61CQ,1338
16
+ vantage6/cli/algostore/attach.py,sha256=0WzLnKigJAelPpL5EaWcnRuUyQzMSofrrZfEzwDIvSw,311
17
+ vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
18
+ vantage6/cli/algostore/list.py,sha256=owBrU52ANp8oE68Rk1Hhd6yNYqWX-7uREtmCok_wndg,417
19
+ vantage6/cli/algostore/new.py,sha256=ekqZ7_qCUtWs0QU6coo34thfkksHbCAYAD8nr0SKgO4,2147
20
+ vantage6/cli/algostore/remove.py,sha256=ieQLpo2ZpblpPxaeRXdB7IO0DzTtURnveYQltW7TTSw,1643
21
+ vantage6/cli/algostore/start.py,sha256=lkijG7K5TymXpZqVLhrW-YPhBmex_8T6WSLSruj64PQ,3169
22
+ vantage6/cli/algostore/stop.py,sha256=8g5DlISUXTf7abs4BTi2b2XOsuKWTwUGuCPIOMgSAeA,1835
23
+ vantage6/cli/common/decorator.py,sha256=7Iwlcc_ekgXJco4tNjEV79ul43Q28OrieiGkvDBeGeE,3625
24
+ vantage6/cli/common/start.py,sha256=IazXW6hKzFTomGu19lvr5z-EOzyXOD1fKokCwiIA8zc,9253
25
+ vantage6/cli/common/utils.py,sha256=zBBHcH47S10cF62qabvyfwqFsmYrNS63aQLBRno9Bnw,4977
26
+ vantage6/cli/context/__init__.py,sha256=e8rfY2tCyu6_SLQ-rbVzEHkDtmbnGCZRHFN_HH-2bnA,2683
27
+ vantage6/cli/context/algorithm_store.py,sha256=NsmrgDCTJ10KqQ209Q1sq-hBhuU_4LRqfbj3SZ-ivnU,3938
28
+ vantage6/cli/context/base_server.py,sha256=paKSzNrKWD-J6eakHAtGELk2cD05A8NqoCAuQfF7c2s,2972
29
+ vantage6/cli/context/node.py,sha256=BIDSIwbNkoqgAg8CUMA7Q_cJjp8vNwqnr3daY8X4Juw,7362
30
+ vantage6/cli/context/server.py,sha256=vBGJWNsJoVcIryX5OLiWnFklNRcjOVkhqm2U5tqW5b0,3946
31
+ vantage6/cli/node/attach.py,sha256=cmouPrkbIbg21_wlAe-L-ecmrKVxiDkzGmEtRaCnKQY,276
32
+ vantage6/cli/node/clean.py,sha256=uCty2GNuwoTybs1nIOygQLxtbleQ-rnnS6_4ieWVmCw,1199
33
+ vantage6/cli/node/create_private_key.py,sha256=yciL1DtACxrBeEGxeaDi0NefDTvegG6s4rr5jA9J5TY,5207
34
+ vantage6/cli/node/files.py,sha256=V7bJeR8weX0Llpp6y9wQoNrRsvlotEE6e70aTJp9j6M,1331
35
+ vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,1664
36
+ vantage6/cli/node/new.py,sha256=wuv8mdL4sLV91TJMIksU8dx2LlcUFrA1oORyiICruMw,2039
37
+ vantage6/cli/node/remove.py,sha256=Al1XALUwciOU6zIRQB2D9EggUdvtU23laOZTWyYKKvc,3552
38
+ vantage6/cli/node/restart.py,sha256=bWx0n4tN8TWOy_o8lJkA7AR-H1UIbfAiPp93I5wXg1Y,3709
39
+ vantage6/cli/node/set_api_key.py,sha256=2kB8wveTy9_N8kX4huVhJhY86Ppd2BI8v-d7MRXQAdA,1877
40
+ vantage6/cli/node/start.py,sha256=LsHoIKprsfyoDAbSwxCCux3W5zZHsaEiOKz1dZ9-ynE,12395
41
+ vantage6/cli/node/stop.py,sha256=Hf5z2r6ttbW-DeU0cdHNXIJcgL-eIVRv8i7zZLo4foY,4159
42
+ vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
43
+ vantage6/cli/node/common/__init__.py,sha256=Jq3cI0Y1cybM_khCmdl1xwY1H6FLNJSHuu1J85DFg7Q,3461
44
+ vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
46
+ vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
47
+ vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
48
+ vantage6/cli/server/attach.py,sha256=q1E40nGCBEFUF1p94sZoU-Ud3OXAUy4-FJqcP7Gqa7U,322
49
+ vantage6/cli/server/files.py,sha256=LJhFyYHcEnCgFhVAM-lX6_EnfhMJ7YPdN21kVIpmwkc,507
50
+ vantage6/cli/server/import_.py,sha256=mp6DgHzmRXd_M_507QPJOp0IiAtbXJY4V0IZxdkY0Lg,4516
51
+ vantage6/cli/server/list.py,sha256=62ocNRtOAwbx9bgviva4Nd7_3rA7XmFDA55SPyNWZ1o,403
52
+ vantage6/cli/server/new.py,sha256=JnUMMD0UUSCOdO0K7v19l5HOV7vnMd9D38WUoEJ2F00,2094
53
+ vantage6/cli/server/remove.py,sha256=6tfKfVa5dYnZAKQYo_VlGZTuiugi7sh2F3U2cZ7mCmQ,1627
54
+ vantage6/cli/server/shell.py,sha256=9b_koFmBQRQYIK57usm75hZAaIF4msicLTu55dYHlzM,1583
55
+ vantage6/cli/server/start.py,sha256=sHTK7tCwLvFJbNKac5FB1IYhb8oTUrA9rM3nKjIplHw,7740
56
+ vantage6/cli/server/stop.py,sha256=tUreB1ogc9SwKMrmejfvErtwt9d5M_qOON2s9UZmLvE,4135
57
+ vantage6/cli/server/version.py,sha256=AUYp0CJBnYF8tD3HXqE7kM0RycXipjOYEDkraswUlaA,1306
58
+ vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
59
+ vantage6/cli/template/algo_store_config.j2,sha256=QBGakqMOvUTcOIdAqoR4X6E8eApQ65ggAnQmaUViAV0,554
60
+ vantage6/cli/template/node_config.j2,sha256=TPeCbfYEblwWonZkyBqzXluaoN-w0MpthwMTN8lTTW8,805
61
+ vantage6/cli/template/server_config.j2,sha256=LKPa-ocK7h8qXgzrEYVHjxovaGX0CRQ0uPXImdAcpz0,804
62
+ vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
63
+ vantage6/cli/test/feature_tester.py,sha256=M8hvebupPwYjcBZoUB8GB3qb8G1-d3ipNzRMc_3-Z8E,2761
64
+ vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
65
+ vantage6/cli/test/common/diagnostic_runner.py,sha256=F8vEaCD6HeKWDcQGVzRkPYxdvEk9owqfciOVdN3bHbw,6607
66
+ vantage6-5.0.0a9.dist-info/METADATA,sha256=VZAGO7gSOV-MCOqhOESnDpNYjKBMQA9UjocVy6vKUQ4,10884
67
+ vantage6-5.0.0a9.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
68
+ vantage6-5.0.0a9.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
69
+ vantage6-5.0.0a9.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
70
+ vantage6-5.0.0a9.dist-info/RECORD,,