-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (24 loc) · 885 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
import os
from setuptools import setup
# utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="kisn_pylab",
version="3.0.0",
author="bartulem",
author_email="[email protected]",
description=("For running e-phys/3D tracking experiments"),
license="LICENSE",
keywords="ephys tracking imu",
url="https://github.com/bartulem/KISN-PyLab",
packages=['kisn_pylab'],
long_description=read('README.md'),
classifiers=[
"Intended Audience :: Science/Research",
"License :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
], install_requires=['pandas', 'numpy', 'tqdm', 'scipy', 'matplotlib', 'scikit-learn', 'plotly', 'astropy', 'numba']
)