pigeon-tem-comms 0.1.0__tar.gz → 0.1.1__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 (24) hide show
  1. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/PKG-INFO +11 -1
  2. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/__init__.py +1 -1
  3. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/buffer.py +1 -1
  4. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/camera.py +1 -1
  5. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/scope.py +1 -1
  6. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/stage/aperture.py +1 -1
  7. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/stage/motion.py +1 -1
  8. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/stage/rotation.py +1 -1
  9. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/tile/__init__.py +1 -1
  10. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/tile/statistics.py +1 -1
  11. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/PKG-INFO +11 -1
  12. pigeon_tem_comms-0.1.1/pyproject.toml +30 -0
  13. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/tests/test_buffer.py +1 -1
  14. pigeon_tem_comms-0.1.0/pyproject.toml +0 -16
  15. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/LICENSE +0 -0
  16. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/README.md +0 -0
  17. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/TEM_comms/stage/__init__.py +0 -0
  18. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/SOURCES.txt +0 -0
  19. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/dependency_links.txt +0 -0
  20. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/entry_points.txt +0 -0
  21. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/requires.txt +0 -0
  22. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/pigeon_tem_comms.egg-info/top_level.txt +0 -0
  23. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/setup.cfg +0 -0
  24. {pigeon_tem_comms-0.1.0 → pigeon_tem_comms-0.1.1}/tests/test_scope_command.py +0 -0
@@ -1,8 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pigeon-tem-comms
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Pigeon messages for the next generation TEM imaging system.
5
5
  Author-email: Cameron Devine <cameron.devine@alleninstitute.org>
6
+ License: BSD 3 Clause
7
+ Project-URL: Homepage, https://github.com/AllenInstitute/TEM_comms
8
+ Project-URL: Documentation, https://alleninstitute.github.io/TEM_architecture/topics.html
9
+ Project-URL: Repository, https://github.com/AllenInstitute/TEM_comms
10
+ Project-URL: Issues, https://github.com/AllenInstitute/TEM_comms/issues
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: BSD License
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
6
16
  Requires-Python: >=3.10
7
17
  Description-Content-Type: text/markdown
8
18
  License-File: LICENSE
@@ -7,7 +7,7 @@ from . import tile
7
7
  import importlib.metadata
8
8
 
9
9
 
10
- __version__ = importlib.metadata.version("TEM_comms")
10
+ __version__ = importlib.metadata.version("pigeon-tem-comms")
11
11
 
12
12
  topics = {
13
13
  "buffer.status": buffer.Status,
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
 
4
4
  class Status(BaseMessage):
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
  class Command(BaseMessage):
4
4
  tile_id: str
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
  from typing import Literal
3
3
  from pydantic import model_validator
4
4
 
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
  class Command(BaseMessage):
4
4
  aperture_id: int | None = None
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
  class Command(BaseMessage):
4
4
  x: int | None = None
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
  class Command(BaseMessage):
4
4
  angle_x: float | None = None
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
  from . import statistics
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- from emarfarap import BaseMessage
1
+ from pigeon import BaseMessage
2
2
 
3
3
  class Focus(BaseMessage):
4
4
  tile_id: str
@@ -1,8 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pigeon-tem-comms
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Pigeon messages for the next generation TEM imaging system.
5
5
  Author-email: Cameron Devine <cameron.devine@alleninstitute.org>
6
+ License: BSD 3 Clause
7
+ Project-URL: Homepage, https://github.com/AllenInstitute/TEM_comms
8
+ Project-URL: Documentation, https://alleninstitute.github.io/TEM_architecture/topics.html
9
+ Project-URL: Repository, https://github.com/AllenInstitute/TEM_comms
10
+ Project-URL: Issues, https://github.com/AllenInstitute/TEM_comms/issues
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: BSD License
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
6
16
  Requires-Python: >=3.10
7
17
  Description-Content-Type: text/markdown
8
18
  License-File: LICENSE
@@ -0,0 +1,30 @@
1
+ [project]
2
+ name = "pigeon-tem-comms"
3
+ version = "0.1.1"
4
+ authors = [
5
+ { name="Cameron Devine", email="cameron.devine@alleninstitute.org" },
6
+ ]
7
+ description = "Pigeon messages for the next generation TEM imaging system."
8
+ readme = "README.md"
9
+ requires-python = ">=3.10"
10
+ dependencies = [
11
+ "pigeon-client",
12
+ "pydantic",
13
+ ]
14
+ license = {text = "BSD 3 Clause"}
15
+ classifiers = [
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: BSD License",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Programming Language :: Python :: 3.11",
20
+ "Programming Language :: Python :: 3.12",
21
+ ]
22
+
23
+ [project.entry-points."pigeon.msgs"]
24
+ msgs = "TEM_comms:msgs"
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/AllenInstitute/TEM_comms"
28
+ Documentation = "https://alleninstitute.github.io/TEM_architecture/topics.html"
29
+ Repository = "https://github.com/AllenInstitute/TEM_comms"
30
+ Issues = "https://github.com/AllenInstitute/TEM_comms/issues"
@@ -1,7 +1,7 @@
1
1
  import re
2
2
 
3
3
  import pytest
4
- from TEM_comms.msgs.buffer import Status
4
+ from TEM_comms.buffer import Status
5
5
 
6
6
  from pydantic import ValidationError
7
7
 
@@ -1,16 +0,0 @@
1
- [project]
2
- name = "pigeon-tem-comms"
3
- version = "0.1.0"
4
- authors = [
5
- { name="Cameron Devine", email="cameron.devine@alleninstitute.org" },
6
- ]
7
- description = "Pigeon messages for the next generation TEM imaging system."
8
- readme = "README.md"
9
- requires-python = ">=3.10"
10
- dependencies = [
11
- "pigeon-client",
12
- "pydantic",
13
- ]
14
-
15
- [project.entry-points."pigeon.msgs"]
16
- msgs = "TEM_comms:msgs"