diff --git a/codemeta.json b/codemeta.json index cf6d2d950..d28ebeb70 100644 --- a/codemeta.json +++ b/codemeta.json @@ -4,15 +4,15 @@ "license": "https://spdx.org/licenses/BSD-3-Clause", "codeRepository": "https://github.com/NeuralEnsemble/python-neo", "contIntegration": "https://github.com/NeuralEnsemble/python-neo/actions", - "dateModified": "2024-02-02", - "downloadUrl": "https://files.pythonhosted.org/packages/b2/07/b8653dd235919dc13671fc31bd8bcbb57571e72d75e4cb04dc1347416357/neo-0.13.0.tar.gz", + "dateModified": "2024-05-07", + "downloadUrl": "https://files.pythonhosted.org/packages/8b/75/a9a841dc8f5a4198fe3f7174f096726a8b71444670be3abd6ac168de44d8/neo-0.13.1.tar.gz", "issueTracker": "https://github.com/NeuralEnsemble/python-neo/issues", "name": "Neo", - "version": "0.13.0", + "version": "0.13.1", "identifier": "RRID:SCR_000634", "description": "Neo is a Python package for working with electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats, including Spike2, NeuroExplorer, AlphaOmega, Axon, Blackrock, Plexon, Tdt, and support for writing to a subset of these formats plus non-proprietary formats including HDF5.\n\nThe goal of Neo is to improve interoperability between Python tools for analyzing, visualizing and generating electrophysiology data by providing a common, shared object model. In order to be as lightweight a dependency as possible, Neo is deliberately limited to represention of data, with no functions for data analysis or visualization.\n\nNeo is used by a number of other software tools, including SpykeViewer (data analysis and visualization), Elephant (data analysis), the G-node suite (databasing), PyNN (simulations), tridesclous_ (spike sorting) and ephyviewer (data visualization).\n\nNeo implements a hierarchical data model well adapted to intracellular and extracellular electrophysiology and EEG data with support for multi-electrodes (for example tetrodes). Neo's data objects build on the quantities package, which in turn builds on NumPy by adding support for physical dimensions. Thus Neo objects behave just like normal NumPy arrays, but with additional metadata, checks for dimensional consistency and automatic unit conversion.", "applicationCategory": "neuroscience", - "releaseNotes": "https://neo.readthedocs.io/en/stable/releases/0.13.0.html", + "releaseNotes": "https://neo.readthedocs.io/en/stable/releases/0.13.1.html", "funding": "https://cordis.europa.eu/project/id/945539", "developmentStatus": "active", "referencePublication": "https://doi.org/10.3389/fninf.2014.00010", @@ -54,6 +54,7 @@ { "@type": "Person", "givenName": "Kyler", "familyName": "Brown" }, { "@type": "Person", "givenName": "Mikkel Elle", "familyName": "Lepperød" }, { "@type": "Person", "givenName": "C Daniel", "familyName": "Meliza" }, + { "@type": "Person", "givenName": "Michael", "familyName": "Denker" }, { "@type": "Person", "givenName": "Julia", "familyName": "Sprenger" }, { "@type": "Person", "givenName": "Maximilian", "familyName": "Schmidt" }, { "@type": "Person", "givenName": "Johanna", "familyName": "Senk" }, @@ -103,6 +104,9 @@ { "@type": "Person", "givenName": "Cody", "familyName": "Baker" }, { "@type": "Person", "givenName": "Fernando J.", "familyName": "Chaure" }, { "@type": "Person", "alternateName": "Filipe@github" }, - { "@type": "Person", "givenName": "Matthias Klumpp" } + { "@type": "Person", "givenName": "Matthias", "familyName": "Klumpp" }, + { "@type": "Person", "givenName": "Greg", "familyName": "Knoll" }, + { "@type": "Person", "givenName": "Chris", "familyName": "Halcrow" }, + { "@type": "Person", "givenName": "Szonja", "familyName": "Weigl" } ] } diff --git a/pyproject.toml b/pyproject.toml index dd0ae7680..3aaec6dac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "neo" -version = "0.13.1" +version = "0.13.2.dev" authors = [{name = "Neo authors and contributors"}] description = "Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats" readme = "README.rst"