~ubuntu-branches/ubuntu/wily/nibabel/wily-proposed

« back to all changes in this revision

Viewing changes to nibabel/info.py

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2012-05-06 12:58:22 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120506125822-3jiwjkmdqcxkrior
Tags: 1.2.0-1
* New upstream release: bugfixes, support for new formats
  (Freesurfer, ECAT, etc), nib-ls tool.
* debian/copyright
  - corrected reference to the format specs
  - points to github's repository as the origin of sources
  - removed lightunit license/copyright -- removed upstream
  - added netcdf module license/copyright terms
* debian/control
  - added python-fuse to Recommends and Build-Depends for dicomfs
  - boosted policy compliance to 3.9.3 (no further changes)
* debian/watch
  - adjusted to download numbered tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# full release.  '.dev' as a _version_extra string means this is a development
8
8
# version
9
9
_version_major = 1
10
 
_version_minor = 1
 
10
_version_minor = 2
11
11
_version_micro = 0
12
 
# _version_extra = '.dev'
 
12
#_version_extra = 'dev'
13
13
_version_extra = ''
14
14
 
15
15
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
29
29
description  = 'Access a multitude of neuroimaging data formats'
30
30
 
31
31
# Note: this long_description is actually a copy/paste from the top-level
32
 
# README.txt, so that it shows up nicely on PyPI.  So please remember to edit
 
32
# README.rst, so that it shows up nicely on PyPI.  So please remember to edit
33
33
# it only in one place and sync it correctly.
34
34
long_description = """
35
35
=======
38
38
 
39
39
This package provides read and write access to some common medical and
40
40
neuroimaging file formats, including: ANALYZE_ (plain, SPM99, SPM2),
41
 
GIFTI_, NIfTI1_, MINC_, as well as PAR/REC. NiBabel is the successor of
42
 
PyNIfTI_.
 
41
GIFTI_, NIfTI1_, MINC_, MGH_ and ECAT_ as well as PAR/REC. There is some very
 
42
limited support for DICOM_.  NiBabel is the successor of PyNIfTI_.
43
43
 
44
44
.. _ANALYZE: http://www.grahamwideman.com/gw/brain/analyze/formatdoc.htm
45
45
.. _NIfTI1: http://nifti.nimh.nih.gov/nifti-1/
46
46
.. _MINC: http://wiki.bic.mni.mcgill.ca/index.php/MINC
47
47
.. _PyNIfTI: http://niftilib.sourceforge.net/pynifti/
48
48
.. _GIFTI: http://www.nitrc.org/projects/gifti
 
49
.. _MGH: http://surfer.nmr.mgh.harvard.edu/fswiki/FsTutorial/MghFormat
 
50
.. _ECAT: http://xmedcon.sourceforge.net/Docs/Ecat
 
51
.. _DICOM: http://medical.nema.org/
49
52
 
50
53
The various image format classes give full or selective access to header (meta)
51
54
information and access to the image data is made available via NumPy arrays.