forked from datajoint/element-array-ephys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.81 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from os import path
from setuptools import find_packages, setup
pkg_name = "element_array_ephys"
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), "r") as f:
long_description = f.read()
with open(path.join(here, "element_array_ephys/export/nwb/requirements.txt")) as f:
requirements_nwb = f.read().splitlines()
with open(path.join(here, pkg_name, "version.py")) as f:
exec(f.read())
setup(
name=pkg_name.replace("_", "-"),
version=__version__, # noqa F821
description="Extracellular Array Electrophysiology DataJoint Element",
long_description=long_description,
long_description_content_type="text/markdown",
author="DataJoint",
author_email="[email protected]",
license="MIT",
url=f'https://github.com/datajoint/{pkg_name.replace("_", "-")}',
keywords="neuroscience electrophysiology science datajoint",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
scripts=[],
install_requires=[
"datajoint>=0.13.0",
"ipykernel>=6.0.1",
"ipywidgets",
"openpyxl",
"plotly",
"seaborn",
"spikeinterface",
"scikit-image>=0.20",
"nbformat>=4.2.0",
"pyopenephys>=1.1.6",
],
extras_require={
"elements": [
"element-animal @ git+https://github.com/datajoint/element-animal.git",
"element-event @ git+https://github.com/datajoint/element-event.git",
"element-interface @ git+https://github.com/datajoint/element-interface.git",
"element-lab @ git+https://github.com/datajoint/element-lab.git",
"element-session @ git+https://github.com/datajoint/element-session.git",
],
"nwb": ["dandi", "neuroconv[ecephys]", "pynwb"],
"tests": ["pre-commit", "pytest", "pytest-cov"],
},
)