-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (36 loc) · 995 Bytes
/
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
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup
setup(
name='bluerecording',
version='0.2.1',
description='A tool for calculating extracellular recording lead fields',
url='https://github.com/BlueBrain/BlueRecording',
author='Blue Brain Project, EPFL',
license='GPL-3.0',
packages=['bluerecording'],
install_requires=[
'bluepysnap>=1.0.0',
'libsonata>=0.1.28',
'scikit-learn',
'voxcell',
'scipy',
'numpy',
'pandas',
'morphio<3.3.7',
'notebook',
'ipython',
'matplotlib',
'MEAutility',
'neuron',
'connectome-utilities @ git+https://github.com/BlueBrain/ConnectomeUtilities',
'pytest-cov',
'ipympl',
'neo',
'xarray',
'allensdk @ git+https://github.com/joseph-tharayil/AllenSDK',
'cinplaAnalysis @ git+https://github.com/joseph-tharayil/CINPLA_Allen_V1_analysis',
'pytz',
'python-dateutil'
],
pip_options=['--only-binary=matplotlib'],
)