forked from datajoint/workflow-array-ephys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (30 loc) · 1.27 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
from os import path
from setuptools import find_packages, setup
pkg_name = "workflow_array_ephys"
here = path.abspath(path.dirname(__file__))
long_description = """"
# Pipeline for extracellular electrophysiology using Neuropixels probe and kilosort clustering method
Build a full ephys pipeline using the DataJoint elements
+ [element-lab](https://github.com/datajoint/element-lab)
+ [element-animal](https://github.com/datajoint/element-animal)
+ [element-session](https://github.com/datajoint/element-session)
+ [element-array-ephys](https://github.com/datajoint/element-array-ephys)
"""
with open(path.join(here, "requirements.txt")) as f:
requirements = f.read().splitlines()
with open(path.join(here, pkg_name, "version.py")) as f:
exec(f.read())
setup(
name="workflow-array-ephys",
python_requires=">=3.7",
version=__version__, # noqa: F821
description="Extracellular electrophysiology pipeline using the DataJoint elements",
long_description=long_description,
author="DataJoint",
author_email="[email protected]",
license="MIT",
url="https://github.com/datajoint/workflow-array-ephys",
keywords="neuroscience datajoint ephys",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
install_requires=requirements,
)