np-services 0.1.73__tar.gz → 0.1.74__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 (20) hide show
  1. {np_services-0.1.73 → np_services-0.1.74}/PKG-INFO +3 -1
  2. {np_services-0.1.73 → np_services-0.1.74}/pyproject.toml +7 -11
  3. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/PKG-INFO +3 -1
  4. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/requires.txt +3 -0
  5. {np_services-0.1.73 → np_services-0.1.74}/README.md +0 -0
  6. {np_services-0.1.73 → np_services-0.1.74}/setup.cfg +0 -0
  7. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/__init__.py +0 -0
  8. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/open_ephys.py +0 -0
  9. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/protocols.py +0 -0
  10. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/proxies.py +0 -0
  11. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/resources/__init__.py +0 -0
  12. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/resources/mvr_connector.py +0 -0
  13. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/resources/zro.py +0 -0
  14. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/scripts/pretest.py +0 -0
  15. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/stim_computer_theme_changer.py +0 -0
  16. {np_services-0.1.73 → np_services-0.1.74}/src/np_services/utils.py +0 -0
  17. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/SOURCES.txt +0 -0
  18. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/dependency_links.txt +0 -0
  19. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/entry_points.txt +0 -0
  20. {np_services-0.1.73 → np_services-0.1.74}/src/np_services.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: np-services
3
- Version: 0.1.73
3
+ Version: 0.1.74
4
4
  Summary: Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute.
5
5
  Author-email: bjhardcastle <ben.hardcastle@alleninstitute.org>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -19,6 +19,8 @@ Requires-Dist: tables<4.0.0,>=3.8.0
19
19
  Requires-Dist: npc-sync>=0.1.13
20
20
  Requires-Dist: npc-stim>=0.1.5
21
21
  Requires-Dist: npc-mvr>=0.1.2
22
+ Provides-Extra: pretest
23
+ Requires-Dist: npc-ephys>=0.1.37; extra == "pretest"
22
24
 
23
25
  # service usage
24
26
  ![Services](./services.drawio.svg)
@@ -17,7 +17,7 @@ dependencies = [
17
17
  "npc-mvr>=0.1.2",
18
18
  ]
19
19
  name = "np-services"
20
- version = "0.1.73"
20
+ version = "0.1.74"
21
21
  description = "Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute."
22
22
  readme = "README.md"
23
23
  classifiers = [
@@ -34,19 +34,18 @@ task = "poethepoet:main"
34
34
  requires = ["setuptools>=61", "wheel"]
35
35
  build-backend = "setuptools.build_meta"
36
36
 
37
- [dependency-groups]
37
+ [project.optional-dependencies]
38
38
  pretest = ["npc-ephys>=0.1.37"]
39
+
40
+ [dependency-groups]
39
41
  task_runner = ["poethepoet>=0.33.1"]
40
42
  linting = ["black>=25.1.0", "isort>=6.0.1", "ruff>=0.11.2"]
41
43
  testing = ["mypy>=1.4.1"]
42
- bump = [
43
- "bump-my-version>=1.1.1",
44
- "git-changelog>=2.5.3",
45
- ]
44
+ bump = ["bump-my-version>=1.1.1", "git-changelog>=2.5.3"]
46
45
 
47
46
  [tool.uv]
48
47
  package = true
49
- default-groups = ["task_runner", "linting", "bump"]
48
+ default-groups = "all"
50
49
 
51
50
  [tool.bumpversion]
52
51
  tag = true
@@ -60,10 +59,7 @@ pre_commit_hooks = [
60
59
  "uv build",
61
60
  "uv publish",
62
61
  ]
63
- post_commit_hooks = [
64
- "git push origin main",
65
- "git push --tags",
66
- ]
62
+ post_commit_hooks = ["git push origin main", "git push --tags"]
67
63
 
68
64
  [tool.poe.tasks]
69
65
  mypy = "mypy src --install-types --non-interactive"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: np-services
3
- Version: 0.1.73
3
+ Version: 0.1.74
4
4
  Summary: Tools for interfacing with devices and services used in Mindscope Neuropixels experiments at the Allen Institute.
5
5
  Author-email: bjhardcastle <ben.hardcastle@alleninstitute.org>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -19,6 +19,8 @@ Requires-Dist: tables<4.0.0,>=3.8.0
19
19
  Requires-Dist: npc-sync>=0.1.13
20
20
  Requires-Dist: npc-stim>=0.1.5
21
21
  Requires-Dist: npc-mvr>=0.1.2
22
+ Provides-Extra: pretest
23
+ Requires-Dist: npc-ephys>=0.1.37; extra == "pretest"
22
24
 
23
25
  # service usage
24
26
  ![Services](./services.drawio.svg)
@@ -9,3 +9,6 @@ tables<4.0.0,>=3.8.0
9
9
  npc-sync>=0.1.13
10
10
  npc-stim>=0.1.5
11
11
  npc-mvr>=0.1.2
12
+
13
+ [pretest]
14
+ npc-ephys>=0.1.37
File without changes
File without changes