-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.48 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
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
import os
# Use Semantic Versioning, http://semver.org/
version_info = (0, 1, 9, '')
__version__ = '%d.%d.%d%s' % version_info
setup(name='ephysanalysis',
version=__version__,
description='Methods for analysis of elecrophysiology data: IV and FI curves',
url='http://github.com/pbmanis/cnmodel',
author='Paul B. Manis',
author_email='[email protected]',
license='MIT',
packages=find_packages(include=['ephysanalysis*']),
zip_safe=False,
entry_points={
'console_scripts': [
'dataSummary=ephysanalysis.dataSummary:main',
'ma2tiff=ephysanalysis.ma2tiff:convertfiles',
'bridge=ephysanalysis.bridge:main',
'notch=ephysanalysis.test_notch:main',
'cmeasure=ephysanalysis.cursor_plot:main',
'matread=ephysanalysis.MatdatacRead:main',
'plotmaps=ephysanalysis.plot_maps:main',
'fix_objscale=ephysanalysis.fix_objscale:main',
]
},
classifiers = [
"Programming Language :: Python :: 3.6+",
"Development Status :: Beta",
"Environment :: Console",
"Intended Audience :: Neuroscientists",
"License :: MIT",
"Operating System :: OS Independent",
"Topic :: Scientific Software :: Tools :: Python Modules",
"Topic :: Data Processing :: Neuroscience",
],
)