Skip to content

Commit 1e012ba

Browse files
author
AJ Keller
committed
REFACTOR: Move plugins to openbci dir
1 parent 6349ea5 commit 1e012ba

25 files changed

+253
-239
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
### Breaking Changes
1010

1111
* Refactored library for pip
12+
* Moved plugins folder into openbci dir so plugins can be imported when installed with pip
1213

1314
# v0.1
1415

openbci/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

22
from .cyton import OpenBCICyton
33
from .ganglion import OpenBCIGanglion
4-
from .wifi import OpenBCIWiFi
4+
from .plugins import *
55
from .utils import *
6+
from .wifi import OpenBCIWiFi
67

78

89
__version__ = "1.0.0"
File renamed without changes.

openbci/plugins/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
from .csv_collect import *
3+
from .noise_test import *
4+
from .streamer_lsl import *
5+
from .streamer_osc import *
6+
from .streamer_tcp_server import *
7+
from .udp_server import *
8+
9+
__version__ = "1.0.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)