pychemstation 0.5.12__tar.gz → 0.5.13__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 (51) hide show
  1. {pychemstation-0.5.12 → pychemstation-0.5.13}/PKG-INFO +3 -2
  2. {pychemstation-0.5.12 → pychemstation-0.5.13}/README.md +1 -1
  3. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/analysis/base_spectrum.py +509 -509
  4. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/analysis/spec_utils.py +304 -304
  5. pychemstation-0.5.13/pychemstation/control/controllers/__init__.py +9 -0
  6. pychemstation-0.5.13/pychemstation/control/controllers/devices/column.py +12 -0
  7. pychemstation-0.5.13/pychemstation/control/controllers/devices/device.py +23 -0
  8. pychemstation-0.5.13/pychemstation/control/controllers/devices/injector.py +11 -0
  9. pychemstation-0.5.13/pychemstation/control/controllers/devices/pump.py +43 -0
  10. {pychemstation-0.5.12/pychemstation/control/controllers → pychemstation-0.5.13/pychemstation/control/controllers/tables}/method.py +97 -84
  11. pychemstation-0.5.13/pychemstation/control/controllers/tables/ms.py +21 -0
  12. {pychemstation-0.5.12/pychemstation/control/controllers → pychemstation-0.5.13/pychemstation/control/controllers/tables}/sequence.py +26 -16
  13. pychemstation-0.5.12/pychemstation/control/controllers/table_controller.py → pychemstation-0.5.13/pychemstation/control/controllers/tables/table.py +56 -25
  14. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/control/hplc.py +13 -7
  15. pychemstation-0.5.13/pychemstation/utils/__init__.py +0 -0
  16. pychemstation-0.5.13/pychemstation/utils/injector_types.py +30 -0
  17. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/macro.py +1 -0
  18. pychemstation-0.5.13/pychemstation/utils/pump_types.py +7 -0
  19. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/sequence_types.py +3 -2
  20. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/tray_types.py +4 -0
  21. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation.egg-info/PKG-INFO +3 -2
  22. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation.egg-info/SOURCES.txt +13 -3
  23. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation.egg-info/requires.txt +1 -0
  24. {pychemstation-0.5.12 → pychemstation-0.5.13}/pyproject.toml +3 -1
  25. {pychemstation-0.5.12 → pychemstation-0.5.13}/setup.py +3 -2
  26. pychemstation-0.5.13/tests/__init__.py +0 -0
  27. {pychemstation-0.5.12 → pychemstation-0.5.13}/tests/constants.py +1 -1
  28. pychemstation-0.5.13/tests/test_inj.py +38 -0
  29. {pychemstation-0.5.12 → pychemstation-0.5.13}/tests/test_method.py +21 -1
  30. pychemstation-0.5.12/pychemstation/control/controllers/__init__.py +0 -4
  31. {pychemstation-0.5.12 → pychemstation-0.5.13}/LICENSE +0 -0
  32. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/__init__.py +0 -0
  33. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/analysis/__init__.py +0 -0
  34. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/analysis/utils.py +0 -0
  35. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/control/__init__.py +0 -0
  36. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/control/controllers/comm.py +0 -0
  37. {pychemstation-0.5.12/pychemstation/utils → pychemstation-0.5.13/pychemstation/control/controllers/devices}/__init__.py +0 -0
  38. {pychemstation-0.5.12/tests → pychemstation-0.5.13/pychemstation/control/controllers/tables}/__init__.py +0 -0
  39. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/generated/__init__.py +0 -0
  40. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/generated/dad_method.py +0 -0
  41. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/generated/pump_method.py +0 -0
  42. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/chromatogram.py +0 -0
  43. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/method_types.py +0 -0
  44. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/parsing.py +0 -0
  45. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation/utils/table_types.py +0 -0
  46. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation.egg-info/dependency_links.txt +0 -0
  47. {pychemstation-0.5.12 → pychemstation-0.5.13}/pychemstation.egg-info/top_level.txt +0 -0
  48. {pychemstation-0.5.12 → pychemstation-0.5.13}/setup.cfg +0 -0
  49. {pychemstation-0.5.12 → pychemstation-0.5.13}/tests/test_comb.py +0 -0
  50. {pychemstation-0.5.12 → pychemstation-0.5.13}/tests/test_comm.py +0 -0
  51. {pychemstation-0.5.12 → pychemstation-0.5.13}/tests/test_sequence.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pychemstation
3
- Version: 0.5.12
3
+ Version: 0.5.13
4
4
  Summary: Library to interact with Chemstation software, primarily used in Hein lab
5
5
  Home-page: https://gitlab.com/heingroup/device-api/pychemstation
6
6
  Author: Lucy Hao
@@ -14,6 +14,7 @@ Requires-Dist: polling
14
14
  Requires-Dist: seabreeze
15
15
  Requires-Dist: xsdata
16
16
  Requires-Dist: result
17
+ Requires-Dist: rainbow-api
17
18
 
18
19
  # Agilent HPLC Macro Control
19
20
 
@@ -99,7 +100,7 @@ our [GitLab](https://gitlab.com/heingroup/device-api/pychemstation)!
99
100
 
100
101
  ## Authors and Acknowledgements
101
102
 
102
- Lucy Hao
103
+ Lucy Hao, Maria Politi
103
104
 
104
105
  - Adapted from [**AnalyticalLabware**](https://github.com/croningp/analyticallabware), created by members in the Cronin
105
106
  Group. Copyright © Cronin Group, used under the [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) license.
@@ -82,7 +82,7 @@ our [GitLab](https://gitlab.com/heingroup/device-api/pychemstation)!
82
82
 
83
83
  ## Authors and Acknowledgements
84
84
 
85
- Lucy Hao
85
+ Lucy Hao, Maria Politi
86
86
 
87
87
  - Adapted from [**AnalyticalLabware**](https://github.com/croningp/analyticallabware), created by members in the Cronin
88
88
  Group. Copyright © Cronin Group, used under the [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) license.