ephys-link 2.2.0__tar.gz → 2.2.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.
- {ephys_link-2.2.0 → ephys_link-2.2.1}/.gitignore +1 -1
- {ephys_link-2.2.0 → ephys_link-2.2.1}/PKG-INFO +1 -1
- {ephys_link-2.2.0 → ephys_link-2.2.1}/ephys_link.spec +2 -3
- {ephys_link-2.2.0 → ephys_link-2.2.1}/pyproject.toml +7 -7
- ephys_link-2.2.1/src/ephys_link/__about__.py +1 -0
- ephys_link-2.2.0/src/ephys_link/__about__.py +0 -1
- {ephys_link-2.2.0 → ephys_link-2.2.1}/LICENSE +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/README.md +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/mkdocs.yml +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/gen_ref_pages.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/jackhammer.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/logger_test.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/move_tester.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/scripts/server_tester.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/__main__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/back_end/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/back_end/platform_handler.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/back_end/server.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/bindings/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/bindings/fake_binding.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/bindings/mpm_binding.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/bindings/parallax_binding.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/bindings/ump_binding.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/front_end/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/front_end/cli.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/front_end/console.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/front_end/gui.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/utils/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/utils/base_binding.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/utils/constants.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/utils/converters.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/src/ephys_link/utils/startup.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/back_end/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/back_end/test_platform_handler.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/back_end/test_server.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/conftest.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/utils/__init__.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/utils/test_converters.py +0 -0
- {ephys_link-2.2.0 → ephys_link-2.2.1}/tests/utils/test_startup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ephys-link
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: A Python Socket.IO server that allows any Socket.IO-compliant application to communicate with manipulators used in electrophysiology experiments.
|
|
5
5
|
Project-URL: Documentation, https://virtualbrainlab.org/ephys_link/installation_and_use.html
|
|
6
6
|
Project-URL: Issues, https://github.com/VirtualBrainLab/ephys-link/issues
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
# -*- mode: python ; coding: utf-8 -*-
|
|
2
1
|
|
|
3
2
|
from argparse import ArgumentParser
|
|
4
3
|
from importlib import resources
|
|
@@ -17,7 +16,7 @@ FILE_NAME = f"EphysLink-v{version}"
|
|
|
17
16
|
bindings = [binding for binding in collect_submodules("ephys_link.bindings") if binding != "ephys_link.bindings"]
|
|
18
17
|
|
|
19
18
|
# Collect Sensapex SDK.
|
|
20
|
-
ump_sdk_path = str(resources.files('sensapex').joinpath('
|
|
19
|
+
ump_sdk_path = str(resources.files('sensapex').joinpath('um.dll'))
|
|
21
20
|
|
|
22
21
|
# noinspection PyUnresolvedReferences
|
|
23
22
|
a = Analysis(
|
|
@@ -25,7 +24,7 @@ a = Analysis(
|
|
|
25
24
|
pathex=[],
|
|
26
25
|
binaries=[(ump_sdk_path, 'sensapex')],
|
|
27
26
|
datas=[],
|
|
28
|
-
hiddenimports=['engineio.async_drivers.aiohttp'
|
|
27
|
+
hiddenimports=['engineio.async_drivers.aiohttp', *bindings],
|
|
29
28
|
hookspath=[],
|
|
30
29
|
hooksconfig={},
|
|
31
30
|
runtime_hooks=[],
|
|
@@ -58,12 +58,12 @@ exclude = ["/.github", "/.idea", "/docs"]
|
|
|
58
58
|
installer = "uv"
|
|
59
59
|
python = "3.14"
|
|
60
60
|
dependencies = [
|
|
61
|
-
"pyinstaller==6.
|
|
62
|
-
"basedpyright==1.
|
|
63
|
-
"pytest==
|
|
61
|
+
"pyinstaller==6.17.0",
|
|
62
|
+
"basedpyright==1.36.2",
|
|
63
|
+
"pytest==9.0.2",
|
|
64
64
|
"pytest-cov==7.0.0",
|
|
65
65
|
"pytest-mock==3.15.1",
|
|
66
|
-
"pytest-asyncio==1.
|
|
66
|
+
"pytest-asyncio==1.3.0"
|
|
67
67
|
]
|
|
68
68
|
[tool.hatch.envs.default.scripts]
|
|
69
69
|
exe = "pyinstaller.exe ephys_link.spec -y -- -d && pyinstaller.exe ephys_link.spec -y"
|
|
@@ -78,9 +78,9 @@ installer = "uv"
|
|
|
78
78
|
python = "3.14"
|
|
79
79
|
skip-install = true
|
|
80
80
|
dependencies = [
|
|
81
|
-
"mkdocs-material==9.
|
|
82
|
-
"mkdocstrings-python==
|
|
83
|
-
"mkdocs-gen-files==0.
|
|
81
|
+
"mkdocs-material==9.7.1",
|
|
82
|
+
"mkdocstrings-python==2.0.1",
|
|
83
|
+
"mkdocs-gen-files==0.6.0",
|
|
84
84
|
"mkdocs-literate-nav==0.6.2",
|
|
85
85
|
"mkdocs-section-index==0.3.10"
|
|
86
86
|
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.2.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|