Skip to content
Snippets Groups Projects
Commit 875bab98 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

'fsl' is now a namespace package - removed __init__.py. This is so I can use

the fsl namespace in other projects. This breaks python 2 support, but can be
fixed by touching fsl/__init__.py
parent 0e2f5e88
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
#
# __init__.py - The fslpy library.
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
"""The :mod:`fsl` package is a library which contains convenience classes
and functions for use by FSL python tools. It is broadly split into the
following sub-packages:
.. autosummary::
fsl.data
fsl.utils
fsl.scripts
.. note:: The ``fslpy`` version number (currently |version|) is set in a
single place - the :mod:`fsl.version` module.
"""
import fsl.version
__version__ = fsl.version.__version__
"""The current ``fslpy`` version number. This information is stored in the
:mod:`fsl.version` module.
"""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment