-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into wildcards
- Loading branch information
Showing
6 changed files
with
184 additions
and
568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,25 +71,21 @@ | |
extra_compile_args=coverage_flags + ['-std=c++17'], | ||
extra_link_args=coverage_flags) | ||
|
||
with open("README.md", encoding="utf-8") as f: | ||
README = f.read() | ||
|
||
setup( | ||
name="efel", | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
install_requires=['numpy>=1.6'], | ||
extras_require={'neo': ['neo[neomatlabio]>=0.5.1']}, | ||
install_requires=['numpy>=1.6', 'neo>=0.5.2'], | ||
packages=['efel', 'efel.pyfeatures', 'efel.units'], | ||
author="BlueBrain Project, EPFL", | ||
maintainer="Werner Van Geit", | ||
maintainer_email="[email protected]", | ||
description="Electrophys Feature Extract Library (eFEL)", | ||
long_description="The Electrophys Feature Extract Library (eFEL) allows " | ||
"neuroscientists to automatically extract features from time series data " | ||
"recorded from neurons (both in vitro and in silico). " | ||
"Examples are the action potential width and amplitude in " | ||
"voltage traces recorded during whole-cell patch clamp experiments. " | ||
"The user of the library provides a set of traces and selects the " | ||
"features to be calculated. The library will then extract the requested " | ||
"features and return the values to the user.", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
license="LGPLv3", | ||
keywords=[ | ||
'feature', | ||
|
Oops, something went wrong.