forked from Neuroinflab/kCSD-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.58 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.58 KB
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
42
43
44
45
46
47
"""
Python implementation of kernel Current Source Density method
"""
from setuptools import setup, find_packages
def readme():
"""
Used for README
"""
with open('README.rst') as f:
return f.read()
setup(name='kcsd',
version='2.0',
description='kernel current source density methods',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Intended Audience :: Science/Research',
],
keywords='Eletrophysiology CSD LFP MEA',
url='https://github.com/Neuroinflab/kCSD-python',
author='Chaitanya Chintaluri et al',
license='BSD',
packages=find_packages(),
# package_data={'tests': [
# https://stackoverflow.com/questions/14422340/manifest-in-package-data-and-data-files-clarification
# https://github.com/pypa/sampleproject/issues/30#issuecomment-143947944
# os.path.join('sKCSD', 'test.mat')
# ]},
include_package_data=True,
install_requires=['future>=0.16.0',
'numpy>=1.8.0',
'scipy>=0.14.0',
'matplotlib>=2.0'],
extras_require={'docs': ['numpydoc>=0.5',
'sphinx>=1.2.2']},
test_suite='kcsd.tests',
zip_safe=False)