lookout-config 1.17.0__tar.gz → 1.18.0__tar.gz

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.
Files changed (18) hide show
  1. {lookout_config-1.17.0 → lookout_config-1.18.0}/PKG-INFO +2 -2
  2. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/schemas/lookout.schema.json +30 -6
  3. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/PKG-INFO +2 -2
  4. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/requires.txt +1 -1
  5. {lookout_config-1.17.0 → lookout_config-1.18.0}/setup.cfg +2 -2
  6. {lookout_config-1.17.0 → lookout_config-1.18.0}/README.md +0 -0
  7. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/__init__.py +0 -0
  8. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/generate_schemas.py +0 -0
  9. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/generate_urdf.py +0 -0
  10. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/helpers.py +0 -0
  11. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/launch_parameters.py +0 -0
  12. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/test/lookout_config_test.py +0 -0
  13. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config/types.py +0 -0
  14. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/SOURCES.txt +0 -0
  15. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/dependency_links.txt +0 -0
  16. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/top_level.txt +0 -0
  17. {lookout_config-1.17.0 → lookout_config-1.18.0}/lookout_config.egg-info/zip-safe +0 -0
  18. {lookout_config-1.17.0 → lookout_config-1.18.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: lookout_config
3
- Version: 1.17.0
3
+ Version: 1.18.0
4
4
  Summary: A library for reading / writing Lookout config files
5
5
  Home-page: https://github.com/Greenroom-Robotics/lookout
6
6
  Author: Greenroom Robotics
@@ -19,7 +19,7 @@ Requires-Dist: setuptools
19
19
  Requires-Dist: dacite
20
20
  Requires-Dist: PyYAML
21
21
  Requires-Dist: dc-schema
22
- Requires-Dist: greenstream-config==3.16.2
22
+ Requires-Dist: greenstream-config==3.17.1
23
23
  Requires-Dist: gr-urchin
24
24
 
25
25
  # Lookout Config
@@ -337,11 +337,19 @@
337
337
  "type": "boolean"
338
338
  },
339
339
  "mode": {
340
- "$ref": "#/$defs/Mode",
340
+ "allOf": [
341
+ {
342
+ "$ref": "#/$defs/Mode"
343
+ }
344
+ ],
341
345
  "default": "hardware"
342
346
  },
343
347
  "log_level": {
344
- "$ref": "#/$defs/LogLevel",
348
+ "allOf": [
349
+ {
350
+ "$ref": "#/$defs/LogLevel"
351
+ }
352
+ ],
345
353
  "default": "info"
346
354
  },
347
355
  "cameras": {
@@ -352,7 +360,11 @@
352
360
  "type": "array"
353
361
  },
354
362
  "network": {
355
- "$ref": "#/$defs/Network",
363
+ "allOf": [
364
+ {
365
+ "$ref": "#/$defs/Network"
366
+ }
367
+ ],
356
368
  "default": "host"
357
369
  },
358
370
  "gpu": {
@@ -361,15 +373,27 @@
361
373
  "type": "boolean"
362
374
  },
363
375
  "geolocation_mode": {
364
- "$ref": "#/$defs/GeolocationMode",
376
+ "allOf": [
377
+ {
378
+ "$ref": "#/$defs/GeolocationMode"
379
+ }
380
+ ],
365
381
  "default": "none"
366
382
  },
367
383
  "positioning_system": {
368
- "$ref": "#/$defs/PositioningSystem",
384
+ "allOf": [
385
+ {
386
+ "$ref": "#/$defs/PositioningSystem"
387
+ }
388
+ ],
369
389
  "default": "none"
370
390
  },
371
391
  "offsets": {
372
- "$ref": "#/$defs/VesselOffsets",
392
+ "allOf": [
393
+ {
394
+ "$ref": "#/$defs/VesselOffsets"
395
+ }
396
+ ],
373
397
  "default": {
374
398
  "name": "mars.stl",
375
399
  "baselink_to_ins": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: lookout_config
3
- Version: 1.17.0
3
+ Version: 1.18.0
4
4
  Summary: A library for reading / writing Lookout config files
5
5
  Home-page: https://github.com/Greenroom-Robotics/lookout
6
6
  Author: Greenroom Robotics
@@ -19,7 +19,7 @@ Requires-Dist: setuptools
19
19
  Requires-Dist: dacite
20
20
  Requires-Dist: PyYAML
21
21
  Requires-Dist: dc-schema
22
- Requires-Dist: greenstream-config==3.16.2
22
+ Requires-Dist: greenstream-config==3.17.1
23
23
  Requires-Dist: gr-urchin
24
24
 
25
25
  # Lookout Config
@@ -2,5 +2,5 @@ setuptools
2
2
  dacite
3
3
  PyYAML
4
4
  dc-schema
5
- greenstream-config==3.16.2
5
+ greenstream-config==3.17.1
6
6
  gr-urchin
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = lookout_config
3
- version = 1.17.0
3
+ version = 1.18.0
4
4
  url = https://github.com/Greenroom-Robotics/lookout
5
5
  author = Greenroom Robotics
6
6
  author_email = team@greenroomrobotics.com
@@ -26,7 +26,7 @@ install_requires =
26
26
  dacite
27
27
  PyYAML
28
28
  dc-schema
29
- greenstream-config==3.16.2
29
+ greenstream-config==3.17.1
30
30
  gr-urchin
31
31
  zip_safe = true
32
32