-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 1.2 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
from setuptools import setup, find_packages
setup(name='vb_plotting',
version='0.1.8',
description='Utilities for loading and visualizing data from the Allen Institute Mindscope Visual Behavior Project', # noqa: E501
url='https://github.com/DowntonCrabby/visual_behavior_plotting',
author='University of Washington, MSDS Data515 NeuroViz project group',
license='Allen Institute',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: Other/Proprietary License', # Allen Institute Software License # noqa: E501
'Natural Language :: English',
'Programming Language :: Python :: 3.8'
],
packages=find_packages(),
include_package_data = True,
install_requires=[
'flake8',
'pytest',
'pathlib',
'path',
'allensdk>=2.13.3',
'coverage',
'markupsafe==2.0.1'
],
tests_require=['flake8'],
)