forked from BlueBrain/BluePyEfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (56 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""BluePyEfe setup """
"""
Copyright (c) 2020-2023, EPFL/Blue Brain Project
This file is part of BluePyEfe <https://github.com/BlueBrain/BluePyEfe>
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License version 3.0 as published
by the Free Software Foundation.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
import setuptools
import versioneer
setuptools.setup(
name='bluepyefe',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Blue Brain Python E-feature extraction',
long_description="The Blue Brain Python E-feature extraction Library ("
"BluePyEfe) aims at easing the process of reading experimental recordings "
"and extracting batches of electrical features from them. To do so, it "
"combines trace reading functions and features extraction functions from "
"the eFel library. BluePyEfe outputs protocols and features files in a "
"format that can then be used by BluePyOpt for electrical model building "
"purposes.",
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8",
include_package_data=True,
author="BlueBrain Project, EPFL",
license="LGPLv3",
keywords=[
'neuroscience',
'BlueBrainProject'],
url='https://github.com/BlueBrain/BluePyEfe',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU Lesser General Public '
'License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering',
'Topic :: Utilities'],
install_requires=[
'numpy',
'neo',
'matplotlib',
'efel',
'scipy',
'h5py',
'igor2'],
)