From d6822d615bb10b3b7ed99dffa132b2a1dd2f9ae8 Mon Sep 17 00:00:00 2001 From: Danylo Ulianych Date: Tue, 23 Jul 2019 16:35:45 +0300 Subject: [PATCH] Acknowledgments (#241) * acknowledgments * removed reference file AUTHORS.txt * recursive-exclude . *~ --- AUTHORS.txt | 1 - MANIFEST.in | 4 ++-- README.md | 22 ++++++++++++++++++ README.rst | 23 ------------------- doc/acknowledgments.rst | 5 ++++ doc/index.rst | 3 ++- elephant/__init__.py | 2 +- elephant/conversion.py | 2 +- elephant/cubic.py | 2 +- elephant/kernels.py | 2 +- elephant/neo_tools.py | 2 +- elephant/pandas_bridge.py | 2 +- elephant/phase_analysis.py | 2 +- elephant/signal_processing.py | 2 +- elephant/spade.py | 2 +- elephant/spectral.py | 2 +- elephant/spike_train_correlation.py | 2 +- elephant/spike_train_dissimilarity.py | 2 +- elephant/spike_train_generation.py | 2 +- elephant/spike_train_surrogates.py | 2 +- elephant/sta.py | 2 +- elephant/statistics.py | 2 +- elephant/test/test_asset.py | 2 +- elephant/test/test_conversion.py | 2 +- elephant/test/test_cubic.py | 2 +- elephant/test/test_kernels.py | 2 +- elephant/test/test_neo_tools.py | 2 +- elephant/test/test_pandas_bridge.py | 2 +- elephant/test/test_phase_analysis.py | 2 +- elephant/test/test_signal_processing.py | 2 +- elephant/test/test_spade.py | 2 +- elephant/test/test_spectral.py | 2 +- elephant/test/test_spike_train_correlation.py | 2 +- .../test/test_spike_train_dissimilarity.py | 2 +- elephant/test/test_spike_train_generation.py | 2 +- elephant/test/test_spike_train_surrogates.py | 2 +- elephant/test/test_sta.py | 2 +- elephant/test/test_statistics.py | 2 +- elephant/test/test_unitary_event_analysis.py | 2 +- elephant/test/test_waveform_features.py | 2 +- elephant/unitary_event_analysis.py | 2 +- elephant/waveform_features.py | 2 +- setup.py | 2 +- 43 files changed, 68 insertions(+), 64 deletions(-) delete mode 100644 AUTHORS.txt create mode 100644 README.md delete mode 100644 README.rst create mode 100644 doc/acknowledgments.rst diff --git a/AUTHORS.txt b/AUTHORS.txt deleted file mode 100644 index fa1bc3eab..000000000 --- a/AUTHORS.txt +++ /dev/null @@ -1 +0,0 @@ -See doc/authors.rst diff --git a/MANIFEST.in b/MANIFEST.in index d10c065ef..7df4bcd1a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,8 +1,7 @@ recursive-include elephant *.py include requirements*.txt -include README.rst +include README.md include LICENSE.txt -include AUTHORS.txt include elephant/VERSION include elephant/current_source_density_src/README.md include elephant/current_source_density_src/test_data.mat @@ -11,3 +10,4 @@ recursive-include elephant/spade_src *.so *.pyd include elephant/test/spike_extraction_test_data.txt recursive-include doc * prune doc/_build +recursive-exclude . *~ diff --git a/README.md b/README.md new file mode 100644 index 000000000..e9ffa3de3 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# Elephant - Electrophysiology Analysis Toolkit + +Elephant is a package for the analysis of neurophysiological data, based on Neo. + +## Code status + +![](https://travis-ci.org/NeuralEnsemble/elephant.png?branch=master "Unit Test Status") +![](https://coveralls.io/repos/NeuralEnsemble/elephant/badge.png "Unit Test Coverage") +![](https://requires.io/github/NeuralEnsemble/elephant/requirements.png?branch=master "Requirements Status") +![](https://readthedocs.org/projects/elephant/badge/?version=latest "Documentation Status") + +#### Copyright + +:copyright: 2014-2019 by the [Elephant team](doc/authors.rst). + +#### License + +Modified BSD License, see [LICENSE.txt](LICENSE.txt) for details. + +#### Acknowledgments + +See [acknowledgments](doc/acknowledgments.rst). diff --git a/README.rst b/README.rst deleted file mode 100644 index a08e3ba31..000000000 --- a/README.rst +++ /dev/null @@ -1,23 +0,0 @@ -Elephant - Electrophysiology Analysis Toolkit -============================================= - -Elephant is a package for the analysis of neurophysiology data, based on Neo. - -Code status ------------ - -.. image:: https://travis-ci.org/NeuralEnsemble/elephant.png?branch=master - :target: https://travis-ci.org/NeuralEnsemble/elephant - :alt: Unit Test Status -.. image:: https://coveralls.io/repos/NeuralEnsemble/elephant/badge.png - :target: https://coveralls.io/r/NeuralEnsemble/elephant - :alt: Unit Test Coverage -.. image:: https://requires.io/github/NeuralEnsemble/elephant/requirements.png?branch=master - :target: https://requires.io/github/NeuralEnsemble/elephant/requirements/?branch=master - :alt: Requirements Status -.. image:: https://readthedocs.org/projects/elephant/badge/?version=latest - :target: https://readthedocs.org/projects/elephant/?badge=latest - :alt: Documentation Status - -:copyright: Copyright 2014-2019 by the Elephant team, see AUTHORS.txt. -:license: Modified BSD License, see LICENSE.txt for details. diff --git a/doc/acknowledgments.rst b/doc/acknowledgments.rst new file mode 100644 index 000000000..35dff204e --- /dev/null +++ b/doc/acknowledgments.rst @@ -0,0 +1,5 @@ +*************** +Acknowledgments +*************** + +This open source software code was developed in part or in whole in the Human Brain Project, funded from the European Union’s Horizon 2020 Framework Programme for Research and Innovation under Specific Grant Agreements No. 720270 and No. 785907 (Human Brain Project SGA1 and SGA2). diff --git a/doc/index.rst b/doc/index.rst index c77cfa908..5b61b505c 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -25,7 +25,8 @@ Table of Contents modules developers_guide authors - release_notes + release_notes + acknowledgements diff --git a/elephant/__init__.py b/elephant/__init__.py index d81745346..d64a3bee8 100644 --- a/elephant/__init__.py +++ b/elephant/__init__.py @@ -2,7 +2,7 @@ """ Elephant is a package for the analysis of neurophysiology data, based on Neo. -:copyright: Copyright 2014-2019 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2019 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/conversion.py b/elephant/conversion.py index 78675a452..427a1b8c7 100644 --- a/elephant/conversion.py +++ b/elephant/conversion.py @@ -6,7 +6,7 @@ An example is the representation of a spike train as a sequence of 0-1 values (binned spike train). -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: BSD, see LICENSE.txt for details. """ diff --git a/elephant/cubic.py b/elephant/cubic.py index 4e67a51c5..cbc487921 100644 --- a/elephant/cubic.py +++ b/elephant/cubic.py @@ -14,7 +14,7 @@ >>> alpha = 0.05 # significance level of the tests used >>> xi, p_val, k = cubic(data, ximax=100, alpha=0.05, errorval=4.): -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: BSD, see LICENSE.txt for details. ''' # -*- coding: utf-8 -*- diff --git a/elephant/kernels.py b/elephant/kernels.py index adf4d59ba..90ae4e44a 100644 --- a/elephant/kernels.py +++ b/elephant/kernels.py @@ -8,7 +8,7 @@ >>> kernel1 = kernels.GaussianKernel(sigma=100*ms) >>> kernel2 = kernels.ExponentialKernel(sigma=8*mm, invert=True) -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/neo_tools.py b/elephant/neo_tools.py index 3cbcd6d71..70a5932ee 100644 --- a/elephant/neo_tools.py +++ b/elephant/neo_tools.py @@ -2,7 +2,7 @@ """ Tools to manipulate Neo objects. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/pandas_bridge.py b/elephant/pandas_bridge.py index 1dc7fdf7c..ae2dd43f5 100644 --- a/elephant/pandas_bridge.py +++ b/elephant/pandas_bridge.py @@ -2,7 +2,7 @@ """ Bridge to the pandas library. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/phase_analysis.py b/elephant/phase_analysis.py index 99a6f1982..bda2dfb81 100644 --- a/elephant/phase_analysis.py +++ b/elephant/phase_analysis.py @@ -2,7 +2,7 @@ """ Methods for performing phase analysis. -:copyright: Copyright 2014-2018 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2018 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/signal_processing.py b/elephant/signal_processing.py index 29db7eefb..6d82cc785 100644 --- a/elephant/signal_processing.py +++ b/elephant/signal_processing.py @@ -3,7 +3,7 @@ Basic processing procedures for analog signals (e.g., performing a z-score of a signal, or filtering a signal). -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. ''' diff --git a/elephant/spade.py b/elephant/spade.py index 6153932fe..21187abbc 100644 --- a/elephant/spade.py +++ b/elephant/spade.py @@ -53,7 +53,7 @@ plt.legend() plt.show() -:copyright: Copyright 2017 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2017 by the Elephant team, see `doc/authors.rst`. :license: BSD, see LICENSE.txt for details. ''' import numpy diff --git a/elephant/spectral.py b/elephant/spectral.py index ab75e8396..1aaeaf7a0 100644 --- a/elephant/spectral.py +++ b/elephant/spectral.py @@ -3,7 +3,7 @@ Identification of spectral properties in analog signals (e.g., the power spectrum). -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/spike_train_correlation.py b/elephant/spike_train_correlation.py index be37a8cb5..3ce42a733 100644 --- a/elephant/spike_train_correlation.py +++ b/elephant/spike_train_correlation.py @@ -2,7 +2,7 @@ """ This modules provides functions to calculate correlations between spike trains. -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ from __future__ import division diff --git a/elephant/spike_train_dissimilarity.py b/elephant/spike_train_dissimilarity.py index 86e3d24be..50e701177 100644 --- a/elephant/spike_train_dissimilarity.py +++ b/elephant/spike_train_dissimilarity.py @@ -9,7 +9,7 @@ Van Rossum distance implemented in this module, which both are metrics in the mathematical sense and time-scale dependent. -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/spike_train_generation.py b/elephant/spike_train_generation.py index f221396d6..d125bb8c6 100644 --- a/elephant/spike_train_generation.py +++ b/elephant/spike_train_generation.py @@ -6,7 +6,7 @@ Some functions are based on the NeuroTools stgen module, which was mostly written by Eilif Muller, or from the NeuroTools signals.analogs module. -:copyright: Copyright 2015 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/spike_train_surrogates.py b/elephant/spike_train_surrogates.py index 2e7f268ff..6eb445c12 100644 --- a/elephant/spike_train_surrogates.py +++ b/elephant/spike_train_surrogates.py @@ -31,7 +31,7 @@ Operational Time. Front Comput Neurosci. 2010; 4: 127. Original implementation by: Emiliano Torre [e.torre@fz-juelich.de] -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/sta.py b/elephant/sta.py index 329e35fac..7ba2bc0a5 100644 --- a/elephant/sta.py +++ b/elephant/sta.py @@ -3,7 +3,7 @@ Functions to calculate spike-triggered average and spike-field coherence of analog signals. -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. ''' diff --git a/elephant/statistics.py b/elephant/statistics.py index c1fdfc621..e1e0dcbfd 100644 --- a/elephant/statistics.py +++ b/elephant/statistics.py @@ -2,7 +2,7 @@ """ Statistical measures of spike trains (e.g., Fano factor) and functions to estimate firing rates. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_asset.py b/elephant/test/test_asset.py index 08db288bb..f9a1b3fd6 100644 --- a/elephant/test/test_asset.py +++ b/elephant/test/test_asset.py @@ -2,7 +2,7 @@ """ Unit tests for the ASSET analysis. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_conversion.py b/elephant/test/test_conversion.py index fb7724fc5..adcce65c0 100644 --- a/elephant/test/test_conversion.py +++ b/elephant/test/test_conversion.py @@ -2,7 +2,7 @@ """ Unit tests for the conversion module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_cubic.py b/elephant/test/test_cubic.py index 309d59341..8ea42aa36 100644 --- a/elephant/test/test_cubic.py +++ b/elephant/test/test_cubic.py @@ -2,7 +2,7 @@ """ Unit tests for the CUBIC analysis. -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_kernels.py b/elephant/test/test_kernels.py index f5d557f4f..a9191e546 100644 --- a/elephant/test/test_kernels.py +++ b/elephant/test/test_kernels.py @@ -2,7 +2,7 @@ """ Unit tests for the kernels module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_neo_tools.py b/elephant/test/test_neo_tools.py index 901993e59..6219962e6 100644 --- a/elephant/test/test_neo_tools.py +++ b/elephant/test/test_neo_tools.py @@ -2,7 +2,7 @@ """ Unit tests for the neo_tools module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_pandas_bridge.py b/elephant/test/test_pandas_bridge.py index 872562884..360190a90 100644 --- a/elephant/test/test_pandas_bridge.py +++ b/elephant/test/test_pandas_bridge.py @@ -2,7 +2,7 @@ """ Unit tests for the pandas bridge module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_phase_analysis.py b/elephant/test/test_phase_analysis.py index 31ba8fd25..ca365c433 100644 --- a/elephant/test/test_phase_analysis.py +++ b/elephant/test/test_phase_analysis.py @@ -2,7 +2,7 @@ """ Unit tests for the phase analysis module. -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ from __future__ import division, print_function diff --git a/elephant/test/test_signal_processing.py b/elephant/test/test_signal_processing.py index 35c29312e..ff2f657c0 100644 --- a/elephant/test/test_signal_processing.py +++ b/elephant/test/test_signal_processing.py @@ -2,7 +2,7 @@ """ Unit tests for the signal_processing module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ from __future__ import division, print_function diff --git a/elephant/test/test_spade.py b/elephant/test/test_spade.py index f79827064..ff7c588b8 100644 --- a/elephant/test/test_spade.py +++ b/elephant/test/test_spade.py @@ -1,7 +1,7 @@ """ Unit tests for the spade module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ from __future__ import division diff --git a/elephant/test/test_spectral.py b/elephant/test/test_spectral.py index 6272fdcc1..aac889018 100644 --- a/elephant/test/test_spectral.py +++ b/elephant/test/test_spectral.py @@ -2,7 +2,7 @@ """ Unit tests for the spectral module. -:copyright: Copyright 2015 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_spike_train_correlation.py b/elephant/test/test_spike_train_correlation.py index d20aa6d5a..9675bb288 100644 --- a/elephant/test/test_spike_train_correlation.py +++ b/elephant/test/test_spike_train_correlation.py @@ -2,7 +2,7 @@ """ Unit tests for the spike_train_correlation module. -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_spike_train_dissimilarity.py b/elephant/test/test_spike_train_dissimilarity.py index c7a073289..6f9f3fecf 100644 --- a/elephant/test/test_spike_train_dissimilarity.py +++ b/elephant/test/test_spike_train_dissimilarity.py @@ -2,7 +2,7 @@ """ Tests for the spike train dissimilarity measures module. -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_spike_train_generation.py b/elephant/test/test_spike_train_generation.py index dd2843a0b..7d8dc6b6b 100644 --- a/elephant/test/test_spike_train_generation.py +++ b/elephant/test/test_spike_train_generation.py @@ -2,7 +2,7 @@ """ Unit tests for the spike_train_generation module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_spike_train_surrogates.py b/elephant/test/test_spike_train_surrogates.py index 755017dab..046580e1f 100644 --- a/elephant/test/test_spike_train_surrogates.py +++ b/elephant/test/test_spike_train_surrogates.py @@ -2,7 +2,7 @@ """ unittests for spike_train_surrogates module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_sta.py b/elephant/test/test_sta.py index 4c1c42953..6d1afb39c 100644 --- a/elephant/test/test_sta.py +++ b/elephant/test/test_sta.py @@ -2,7 +2,7 @@ """ Tests for the function sta module -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_statistics.py b/elephant/test/test_statistics.py index 2cb20bf7a..eb1fdc03e 100644 --- a/elephant/test/test_statistics.py +++ b/elephant/test/test_statistics.py @@ -2,7 +2,7 @@ """ Unit tests for the statistics module. -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ from __future__ import division diff --git a/elephant/test/test_unitary_event_analysis.py b/elephant/test/test_unitary_event_analysis.py index 0127d2dd4..2623ff0f3 100644 --- a/elephant/test/test_unitary_event_analysis.py +++ b/elephant/test/test_unitary_event_analysis.py @@ -1,7 +1,7 @@ """ Unit tests for the Unitary Events analysis -:copyright: Copyright 2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/test/test_waveform_features.py b/elephant/test/test_waveform_features.py index 2502b0f61..f003a3959 100644 --- a/elephant/test/test_waveform_features.py +++ b/elephant/test/test_waveform_features.py @@ -1,7 +1,7 @@ """ Unit tests for the waveform_feature module. -:copyright: Copyright 2014-2019 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2019 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/unitary_event_analysis.py b/elephant/unitary_event_analysis.py index 446ad4065..c42b03f8d 100644 --- a/elephant/unitary_event_analysis.py +++ b/elephant/unitary_event_analysis.py @@ -15,7 +15,7 @@ - Gruen S (2009) Data-driven significance estimation of precise spike correlation. J Neurophysiology 101:1126-1140 (invited review) -:copyright: Copyright 2015-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2015-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/elephant/waveform_features.py b/elephant/waveform_features.py index b949a6fae..46649db20 100644 --- a/elephant/waveform_features.py +++ b/elephant/waveform_features.py @@ -2,7 +2,7 @@ """ Features of waveforms (e.g waveform_snr). -:copyright: Copyright 2014-2016 by the Elephant team, see AUTHORS.txt. +:copyright: Copyright 2014-2016 by the Elephant team, see `doc/authors.rst`. :license: Modified BSD, see LICENSE.txt for details. """ diff --git a/setup.py b/setup.py index 050401a41..618ac9ebe 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ "elephant", "VERSION")) as version_file: version = version_file.read().strip() -with open("README.rst") as f: +with open("README.md") as f: long_description = f.read() with open('requirements.txt') as fp: install_requires = fp.read()