dirigo-gui 0.1.4__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Massachusetts Institute of Technology
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: dirigo-gui
3
+ Version: 0.1.4
4
+ Summary: Dirigo reference GUI implementation
5
+ Author-email: "T. D. Weber" <tweber@mit.edu>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/dirigo-developers/dirigo-gui
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Topic :: System :: Hardware
15
+ Requires-Python: >=3.11
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: dirigo
19
+ Requires-Dist: customtkinter
20
+ Requires-Dist: pillow
21
+ Dynamic: license-file
22
+
23
+ # dirigo-gui
24
+ Reference GUI for Dirigo image acquisition software. Provides a basic frame scanning, display, and writing.
25
+
26
+ [![PyPI](https://img.shields.io/pypi/v/dirigo-gui)](https://pypi.org/project/dirigo-gui/)
27
+
28
+
29
+ ## Installation
30
+ First install required hardware plugins. A list can be found here: (https://github.com/orgs/dirigo-developers/repositories?type=all)
31
+
32
+ Then run:
33
+ ```bash
34
+ pip install dirigo-gui
35
+ ```
36
+
37
+
38
+ ## Legal Disclaimer
39
+ This library is provided "as is" without any warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The authors are not responsible for any damage to hardware, data loss, or other issues arising from the use or misuse of this library. Users are advised to thoroughly test this library with their specific hardware and configurations before deployment.
40
+
41
+ Use this library at your own risk. Proper operation of hardware and compliance with applicable laws and regulations is the sole responsibility of the user.
42
+
43
+ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
44
+
45
+
46
+ ## Funding
47
+ Development has been supported in part by the National Cancer Institute of the National Institutes of Health under award number R01CA249151.
48
+
49
+ The content of this repository is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health.
@@ -0,0 +1,27 @@
1
+ # dirigo-gui
2
+ Reference GUI for Dirigo image acquisition software. Provides a basic frame scanning, display, and writing.
3
+
4
+ [![PyPI](https://img.shields.io/pypi/v/dirigo-gui)](https://pypi.org/project/dirigo-gui/)
5
+
6
+
7
+ ## Installation
8
+ First install required hardware plugins. A list can be found here: (https://github.com/orgs/dirigo-developers/repositories?type=all)
9
+
10
+ Then run:
11
+ ```bash
12
+ pip install dirigo-gui
13
+ ```
14
+
15
+
16
+ ## Legal Disclaimer
17
+ This library is provided "as is" without any warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The authors are not responsible for any damage to hardware, data loss, or other issues arising from the use or misuse of this library. Users are advised to thoroughly test this library with their specific hardware and configurations before deployment.
18
+
19
+ Use this library at your own risk. Proper operation of hardware and compliance with applicable laws and regulations is the sole responsibility of the user.
20
+
21
+ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
22
+
23
+
24
+ ## Funding
25
+ Development has been supported in part by the National Cancer Institute of the National Institutes of Health under award number R01CA249151.
26
+
27
+ The content of this repository is solely the responsibility of the authors and does not necessarily represent the official views of the National Institutes of Health.
@@ -0,0 +1,4 @@
1
+ from dirigo_gui.reference_gui import ReferenceGUI
2
+ from dirigo_gui import components
3
+
4
+ __all__ = ["ReferenceGUI", "components"]
File without changes