Source code for phenonn.version

# Copyright 2026 IPSL / CNRS / Sorbonne University
# Authors: Stefan Barbu, Kazem Ardaneh
#
# This work is licensed under the Creative Commons
# Attribution-NonCommercial-ShareAlike 4.0 International License.
# To view a copy of this license, visit
# http://creativecommons.org/licenses/by-nc-sa/4.0/
"""
Version information for PhenoNN.
"""

__version__ = "0.1.0"


[docs] def get_version(): """Return the version string.""" return __version__
[docs] def get_versions(): """Return a dictionary with version information.""" return { "version": __version__, "author": "Kazem Ardaneh", "email": "kazem.arrdaneh@gmail.com", "url": "https://github.com/kardaneh/PhenoNN", }