Skip to content

Commit 5f9e497

Browse files
committed
Move pyopenephys to extras_require
1 parent a28cf13 commit 5f9e497

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ datajoint>=0.13
22
element-interface>=0.4.0
33
openpyxl
44
plotly
5-
pyopenephys @ git+https://github.com/datajoint-company/pyopenephys.git
65
seaborn

requirements_openephys.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pyopenephys @ git+https://github.com/datajoint-company/pyopenephys.git

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
with open(path.join(here, "requirements_dev.txt")) as f:
1515
requirements_dev = f.read().splitlines()
1616

17+
with open(path.join(here, "requirements_openephys.txt")) as f:
18+
requirements_openephys = f.read().splitlines()
19+
1720
with open(path.join(here, "element_array_ephys/export/nwb/requirements.txt")) as f:
1821
requirements_nwb = f.read().splitlines()
1922

@@ -32,7 +35,11 @@
3235
url=f'https://github.com/datajoint/{pkg_name.replace("_", "-")}',
3336
keywords="neuroscience electrophysiology science datajoint",
3437
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
35-
extras_require={"dev": requirements_dev, "nwb": requirements_nwb},
38+
extras_require={
39+
"dev": requirements_dev,
40+
"nwb": requirements_nwb,
41+
"openephys": requirements_openephys,
42+
},
3643
scripts=[],
3744
install_requires=requirements,
3845
)

0 commit comments

Comments
 (0)