psychopy-neuroplaypro-neurolab 0.0.8__tar.gz → 0.1.0__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.
- psychopy_neuroplaypro_neurolab-0.1.0/PKG-INFO +9 -0
- psychopy_neuroplaypro_neurolab-0.1.0/psychopy_neuroplaypro_neurolab/plugin.py +8 -0
- psychopy_neuroplaypro_neurolab-0.1.0/psychopy_neuroplaypro_neurolab.egg-info/PKG-INFO +9 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/pyproject.toml +2 -5
- psychopy_neuroplaypro_neurolab-0.0.8/PKG-INFO +0 -18
- psychopy_neuroplaypro_neurolab-0.0.8/psychopy_neuroplaypro_neurolab/plugin.py +0 -8
- psychopy_neuroplaypro_neurolab-0.0.8/psychopy_neuroplaypro_neurolab.egg-info/PKG-INFO +0 -18
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/LICENSE +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/README.md +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab/__init__.py +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab.egg-info/SOURCES.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab.egg-info/dependency_links.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab.egg-info/entry_points.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab.egg-info/requires.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/psychopy_neuroplaypro_neurolab.egg-info/top_level.txt +0 -0
- {psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/setup.cfg +0 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: psychopy-neuroplaypro-neurolab
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: Plugin for integrating NeuroPlayPro EEG recording in PsychoPy Builder.
|
5
|
+
Author-email: Enicast <enicaster@gmail.com>
|
6
|
+
Requires-Python: >=3.8
|
7
|
+
License-File: LICENSE
|
8
|
+
Requires-Dist: psychopy
|
9
|
+
Dynamic: license-file
|
@@ -0,0 +1,8 @@
|
|
1
|
+
from psychopy.plugins import Plugin
|
2
|
+
from psychopy.experiment.components import registerComponent
|
3
|
+
from psychopy_neuroplaypro_neurolab.components.neuroplay.neuroplay import NeuroPlayComponent
|
4
|
+
|
5
|
+
class NeuroPlayPlugin(Plugin):
|
6
|
+
def onLoad(self):
|
7
|
+
registerComponent("neuroplay", NeuroPlayComponent)
|
8
|
+
print("NeuroPlay plugin loaded")
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: psychopy-neuroplaypro-neurolab
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: Plugin for integrating NeuroPlayPro EEG recording in PsychoPy Builder.
|
5
|
+
Author-email: Enicast <enicaster@gmail.com>
|
6
|
+
Requires-Python: >=3.8
|
7
|
+
License-File: LICENSE
|
8
|
+
Requires-Dist: psychopy
|
9
|
+
Dynamic: license-file
|
{psychopy_neuroplaypro_neurolab-0.0.8 → psychopy_neuroplaypro_neurolab-0.1.0}/pyproject.toml
RENAMED
@@ -4,14 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "psychopy-neuroplaypro-neurolab"
|
7
|
-
version = "0.0
|
7
|
+
version = "0.1.0"
|
8
8
|
description = "Plugin for integrating NeuroPlayPro EEG recording in PsychoPy Builder."
|
9
|
-
authors = [
|
10
|
-
{name = "Enicast", email = "enicaster@gmail.com"}
|
11
|
-
]
|
9
|
+
authors = [{name = "Enicast", email = "enicaster@gmail.com"}]
|
12
10
|
dependencies = ["psychopy"]
|
13
11
|
requires-python = ">=3.8"
|
14
|
-
readme = "README.md"
|
15
12
|
|
16
13
|
[project.entry-points."psychopy.plugins"]
|
17
14
|
neuroplay = "psychopy_neuroplaypro_neurolab.plugin:NeuroPlayPlugin"
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: psychopy-neuroplaypro-neurolab
|
3
|
-
Version: 0.0.8
|
4
|
-
Summary: Plugin for integrating NeuroPlayPro EEG recording in PsychoPy Builder.
|
5
|
-
Author-email: Enicast <enicaster@gmail.com>
|
6
|
-
Requires-Python: >=3.8
|
7
|
-
Description-Content-Type: text/markdown
|
8
|
-
License-File: LICENSE
|
9
|
-
Requires-Dist: psychopy
|
10
|
-
Dynamic: license-file
|
11
|
-
|
12
|
-
# PsychoPy NeuroPlay Plugin
|
13
|
-
|
14
|
-
Component for controlling NeuroPlayPro EEG recording from PsychoPy Builder experiments.
|
15
|
-
- Start recording when the component starts
|
16
|
-
- Stop recording when the component ends
|
17
|
-
- Choose folder and filename prefix
|
18
|
-
- Auto-add timestamp if needed
|
@@ -1,8 +0,0 @@
|
|
1
|
-
from psychopy.plugins import Plugin
|
2
|
-
from psychopy.experiment.components import registerComponent
|
3
|
-
from psychopy_neuroplaypro_neurolab.components.neuroplay import NeuroPlayComponent
|
4
|
-
|
5
|
-
class NeuroPlayPlugin(Plugin):
|
6
|
-
def onLoad(self):
|
7
|
-
registerComponent("NeuroPlay", NeuroPlayComponent)
|
8
|
-
print("✅ NeuroPlay component registered")
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: psychopy-neuroplaypro-neurolab
|
3
|
-
Version: 0.0.8
|
4
|
-
Summary: Plugin for integrating NeuroPlayPro EEG recording in PsychoPy Builder.
|
5
|
-
Author-email: Enicast <enicaster@gmail.com>
|
6
|
-
Requires-Python: >=3.8
|
7
|
-
Description-Content-Type: text/markdown
|
8
|
-
License-File: LICENSE
|
9
|
-
Requires-Dist: psychopy
|
10
|
-
Dynamic: license-file
|
11
|
-
|
12
|
-
# PsychoPy NeuroPlay Plugin
|
13
|
-
|
14
|
-
Component for controlling NeuroPlayPro EEG recording from PsychoPy Builder experiments.
|
15
|
-
- Start recording when the component starts
|
16
|
-
- Stop recording when the component ends
|
17
|
-
- Choose folder and filename prefix
|
18
|
-
- Auto-add timestamp if needed
|
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
|