|
18 | 18 | _version_micro,
|
19 | 19 | _version_extra)
|
20 | 20 |
|
21 |
| -CLASSIFIERS = ["Development Status :: 3 - Alpha", |
| 21 | +CLASSIFIERS = ["Development Status :: 4 - Beta", |
22 | 22 | "Environment :: Console",
|
23 | 23 | "Intended Audience :: Science/Research",
|
24 | 24 | "License :: OSI Approved :: MIT License",
|
|
39 | 39 | Read / write access to some common neuroimaging file formats
|
40 | 40 |
|
41 | 41 | This package provides read +/- write access to some common medical and
|
42 |
| -neuroimaging file formats, including: ANALYZE_ (plain, SPM99, SPM2), |
43 |
| -GIFTI_, NIfTI1_, NIfTI2_, MINC1_, MINC2_, MGH_ and ECAT_ as well as PAR/REC. |
44 |
| -We can read and write Freesurfer_ geometry, and read Freesurfer morphometry and |
45 |
| -annotation files. There is some very limited support for DICOM_. NiBabel is |
46 |
| -the successor of PyNIfTI_. |
| 42 | +neuroimaging file formats, including: ANALYZE_ (plain, SPM99, SPM2 and later), |
| 43 | +GIFTI_, NIfTI1_, NIfTI2_, MINC1_, MINC2_, MGH_ and ECAT_ as well as Philips |
| 44 | +PAR/REC. We can read and write Freesurfer_ geometry, and read Freesurfer |
| 45 | +morphometry and annotation files. There is some very limited support for |
| 46 | +DICOM_. NiBabel is the successor of PyNIfTI_. |
47 | 47 |
|
48 | 48 | .. _ANALYZE: http://www.grahamwideman.com/gw/brain/analyze/formatdoc.htm
|
49 | 49 | .. _NIfTI1: http://nifti.nimh.nih.gov/nifti-1/
|
|
65 | 65 | Website
|
66 | 66 | =======
|
67 | 67 |
|
68 |
| -Current information can always be found at the NIPY nibabel website:: |
69 |
| -
|
70 |
| - http://nipy.org/nibabel |
| 68 | +Current documentation on nibabel can always be found at the `NIPY nibabel |
| 69 | +website <http://nipy.org/nibabel>`_. |
71 | 70 |
|
72 | 71 | Mailing Lists
|
73 | 72 | =============
|
74 | 73 |
|
75 |
| -Please see the developer's list here:: |
76 |
| -
|
77 |
| - http://mail.scipy.org/mailman/listinfo/nipy-devel |
| 74 | +Please see the `nipy devel list |
| 75 | +<http://mail.scipy.org/mailman/listinfo/nipy-devel>`_. The nipy devel list is |
| 76 | +fine for user and developer questions about nibabel. |
78 | 77 |
|
79 | 78 | Code
|
80 | 79 | ====
|
81 | 80 |
|
82 | 81 | You can find our sources and single-click downloads:
|
83 | 82 |
|
84 |
| -* `Main repository`_ on Github. |
85 |
| -* Documentation_ for all releases and current development tree. |
86 |
| -* Download as a tar/zip file the `current trunk`_. |
| 83 | +* `Main repository`_ on Github; |
| 84 | +* Documentation_ for all releases and current development tree; |
| 85 | +* Download the `current release`_ from pypi; |
| 86 | +* Download `current development version`_ as a zip file; |
87 | 87 | * Downloads of all `available releases`_.
|
88 | 88 |
|
89 | 89 | .. _main repository: http://github.com/nipy/nibabel
|
90 | 90 | .. _Documentation: http://nipy.org/nibabel
|
91 |
| -.. _current trunk: http://github.com/nipy/nibabel/archives/master |
92 |
| -.. _available releases: http://github.com/nipy/nibabel/downloads |
| 91 | +.. _current release: https://pypi.python.org/pypi/nibabel |
| 92 | +.. _current development version: https://github.com/nipy/nibabel/archive/master.zip |
| 93 | +.. _available releases: https://github.com/nipy/nibabel/releases |
93 | 94 |
|
94 | 95 | License
|
95 | 96 | =======
|
|
100 | 101 | """
|
101 | 102 |
|
102 | 103 | # versions for dependencies
|
103 |
| -NUMPY_MIN_VERSION='1.2' |
| 104 | +NUMPY_MIN_VERSION='1.5' |
104 | 105 | PYDICOM_MIN_VERSION='0.9.7'
|
105 | 106 |
|
106 | 107 | # Main setup parameters
|
|
110 | 111 | DESCRIPTION = description
|
111 | 112 | LONG_DESCRIPTION = long_description
|
112 | 113 | URL = "http://nipy.org/nibabel"
|
113 |
| -DOWNLOAD_URL = "http://github.com/nipy/nibabel/archives/master" |
| 114 | +DOWNLOAD_URL = "http://github.com/nipy/nibabel" |
114 | 115 | LICENSE = "MIT license"
|
115 | 116 | CLASSIFIERS = CLASSIFIERS
|
116 | 117 | AUTHOR = "Matthew Brett, Michael Hanke, Stephan Gerhard"
|
|
121 | 122 | MICRO = _version_micro
|
122 | 123 | ISRELEASE = _version_extra == ''
|
123 | 124 | VERSION = __version__
|
124 |
| -PROVIDES = ["nibabel"] |
| 125 | +PROVIDES = ["nibabel", 'nisext'] |
125 | 126 | REQUIRES = ["numpy (>=%s)" % NUMPY_MIN_VERSION]
|
0 commit comments