Coverage for /Users/estefania/python_playground/membrane-curvature/membrane_curvature/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
3MDAkit for Membrane Curvature
4"""
5#
6# Released under the GNU Public Licence v3 (GPLv3)
7# This program is free software: you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by the Free
9# Software Foundation, either version 3 of the License, or (at your option)
10# any later version.
11#
13# Add imports here
14from .surface import normalized_grid, derive_surface, get_z_surface
15from .curvature import mean_curvature, gaussian_curvature
16from .base import MembraneCurvature
18# Handle versioneer
19from ._version import get_versions
20versions = get_versions()
21__version__ = versions['version']
22__git_revision__ = versions['full-revisionid']
23del get_versions, versions