-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 835 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(name='visual-behavior-glm',
packages=['visual_behavior_glm'],
version='0.0.1',
description='GLM for Visual Behavior ophys data',
url='https://github.com/AllenInstitute/visual_behavior_glm',
author='Alex Piet, Nick Ponvert, Doug Ollerenshaw, Marina Garrett',
author_email="alex.piet@alleninstitute.org, nick.ponvert@alleninstitute.org, dougo@alleninstitute.org, marinag@alleninstitute.org",
license='Allen Institute',
dependency_links=['https://github.com/AllenInstitute/visual_behavior_analysis.git'],
install_requires=[
"allensdk",
"h5py",
"matplotlib",
"plotly",
"pandas==0.25.3",
"seaborn",
"numpy",
"pymongo",
"xarray==0.15.1",
"xarray_mongodb",
],
)