summaryrefslogtreecommitdiff
path: root/pyspike
diff options
context:
space:
mode:
authorMario Mulansky <mario.mulansky@gmx.net>2014-10-13 11:03:42 +0200
committerMario Mulansky <mario.mulansky@gmx.net>2014-10-13 11:03:42 +0200
commit5ce807943fab2ba233cff661e34e4d6a83397b99 (patch)
treeecdd1ea0d1e81f51909dd29758e969da38b91cf3 /pyspike
parent4274c328a4927b392036d1c3b759b0787b05f300 (diff)
changed to BSD license
Diffstat (limited to 'pyspike')
-rw-r--r--pyspike/__init__.py2
-rw-r--r--pyspike/cython_distance.pyx2
-rw-r--r--pyspike/distances.py2
-rw-r--r--pyspike/function.py2
-rw-r--r--pyspike/python_backend.py2
-rw-r--r--pyspike/spikes.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/pyspike/__init__.py b/pyspike/__init__.py
index 3867e6e..c58a6b1 100644
--- a/pyspike/__init__.py
+++ b/pyspike/__init__.py
@@ -1,7 +1,7 @@
"""
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
__all__ = ["function", "distances", "spikes"]
diff --git a/pyspike/cython_distance.pyx b/pyspike/cython_distance.pyx
index 4ab4381..ccf8060 100644
--- a/pyspike/cython_distance.pyx
+++ b/pyspike/cython_distance.pyx
@@ -12,7 +12,7 @@ improves the performance of spike_distance by a factor of 10!
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
diff --git a/pyspike/distances.py b/pyspike/distances.py
index b2eec92..3b9fe1f 100644
--- a/pyspike/distances.py
+++ b/pyspike/distances.py
@@ -4,7 +4,7 @@ Module containing several functions to compute spike distances
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
import numpy as np
diff --git a/pyspike/function.py b/pyspike/function.py
index 8107538..7722cc3 100644
--- a/pyspike/function.py
+++ b/pyspike/function.py
@@ -5,7 +5,7 @@ linear functions.
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
from __future__ import print_function
diff --git a/pyspike/python_backend.py b/pyspike/python_backend.py
index cf1a92f..a1f5ea2 100644
--- a/pyspike/python_backend.py
+++ b/pyspike/python_backend.py
@@ -5,7 +5,7 @@ implementation.
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
diff --git a/pyspike/spikes.py b/pyspike/spikes.py
index c496ab8..d390222 100644
--- a/pyspike/spikes.py
+++ b/pyspike/spikes.py
@@ -4,7 +4,7 @@ Module containing several function to load and transform spike trains
Copyright 2014, Mario Mulansky <mario.mulansky@gmx.net>
-Distributed under the MIT License (MIT)
+Distributed under the BSD License
"""
import numpy as np