forked from saharmanavi/np2_ultra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 918 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
import setuptools
setuptools.setup(
name="np2_ultra",
version="0.2.0",
# url="https://github.com/saharmanavi/np2_ultra",
author="Sahar Manavi",
author_email="[email protected]",
description="process and analyze neuropixels ultra data collected from NP2",
long_description=open('README.md').read(),
packages=setuptools.find_packages(),
# install_requires=[
# 'matlab',
# 'pandas',
# 'numpy',
# 'allensdk',
# 'matplotlib',
# 'seaborn',
# 'glob2',
# ],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)