/usr/share/pyshared/nipy/info.py is in python-nipy 0.3.0-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | """ This file contains defines parameters for nipy that we use to fill
settings in setup.py, the nipy top-level docstring, and for building the
docs. In setup.py in particular, we exec this file, so it cannot import nipy
"""
# nipy version information. An empty _version_extra corresponds to a
# full release. '.dev' as a _version_extra string means this is a development
# version
_version_major = 0
_version_minor = 3
_version_micro = 0
#_version_extra = '.dev' # For development
_version_extra = '' # For release
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
__version__ = "%s.%s.%s%s" % (_version_major,
_version_minor,
_version_micro,
_version_extra)
CLASSIFIERS = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"]
description = 'A python package for analysis of neuroimaging data'
# Note: this long_description is actually a copy/paste from the top-level
# README.rst, so that it shows up nicely on PyPI. So please remember to edit
# it only in one place and sync it correctly.
long_description = \
"""
====
NIPY
====
Neuroimaging tools for Python.
The aim of NIPY is to produce a platform-independent Python environment for the
analysis of functional brain imaging data using an open development model.
In NIPY we aim to:
1. Provide an open source, mixed language scientific programming
environment suitable for rapid development.
2. Create sofware components in this environment to make it easy
to develop tools for MRI, EEG, PET and other modalities.
3. Create and maintain a wide base of developers to contribute to
this platform.
4. To maintain and develop this framework as a single, easily
installable bundle.
NIPY is the work of many people. We list the main authors in the file ``AUTHOR``
in the NIPY distribution, and other contributions in ``THANKS``.
Website
=======
Current information can always be found at the NIPY website::
http://nipy.org/nipy
Mailing Lists
=============
Please see the developer's list::
http://projects.scipy.org/mailman/listinfo/nipy-devel
Code
====
You can find our sources and single-click downloads:
* `Main repository`_ on Github.
* Documentation_ for all releases and current development tree.
* Download as a tar/zip file the `current trunk`_.
* Downloads of all `available releases`_.
.. _main repository: http://github.com/nipy/nipy
.. _Documentation: http://nipy.org/nipy
.. _current trunk: http://github.com/nipy/nipy/archives/master
.. _available releases: http://pypi.python.org/pypi/nipy
Dependencies
============
To run NIPY, you will need:
* python_ >= 2.5 (tested with 2.5, 2.6, 2.7, 3.2, 3.3)
* numpy_ >= 1.2
* scipy_ >= 0.7.0
* sympy_ >= 0.6.6
* nibabel_ >= 1.2
You will probably also like to have:
* ipython_ for interactive work
* matplotlib_ for 2D plotting
* mayavi_ for 3D plotting
.. _python: http://python.org
.. _numpy: http://numpy.scipy.org
.. _scipy: http://www.scipy.org
.. _sympy: http://sympy.org
.. _nibabel: http://nipy.org/nibabel
.. _ipython: http://ipython.scipy.org
.. _matplotlib: http://matplotlib.sourceforge.net
.. _mayavi: http://code.enthought.com/projects/mayavi/
License
=======
We use the 3-clause BSD license; the full license is in the file ``LICENSE`` in
the nipy distribution.
"""
NAME = 'nipy'
MAINTAINER = "nipy developers"
MAINTAINER_EMAIL = "nipy-devel@neuroimaging.scipy.org"
DESCRIPTION = description
LONG_DESCRIPTION = long_description
URL = "http://nipy.org/nipy"
DOWNLOAD_URL = "http://github.com/nipy/nipy/archives/master"
LICENSE = "BSD license"
CLASSIFIERS = CLASSIFIERS
AUTHOR = "nipy developmers"
AUTHOR_EMAIL = "nipy-devel@neuroimaging.scipy.org"
PLATFORMS = "OS Independent"
MAJOR = _version_major
MINOR = _version_minor
MICRO = _version_micro
ISRELEASE = _version_extra == ''
VERSION = __version__
REQUIRES = ["numpy", "scipy", "sympy"]
STATUS = 'beta'
# versions
NUMPY_MIN_VERSION='1.2'
SCIPY_MIN_VERSION = '0.7'
NIBABEL_MIN_VERSION = '1.2'
SYMPY_MIN_VERSION = '0.6.6'
MAYAVI_MIN_VERSION = '3.0'
CYTHON_MIN_VERSION = '0.12.1'
# Versions and locations of optional data packages
NIPY_DATA_URL= 'http://nipy.sourceforge.net/data-packages/'
DATA_PKGS = {'nipy-data': {'min version':'0.2',
'relpath':'nipy/data'},
'nipy-templates': {'min version':'0.2',
'relpath':'nipy/templates'}
}
NIPY_INSTALL_HINT = \
"""You can download and install the package from:
%s
Check the instructions in the ``doc/users/install_data.rst`` file in the nipy
source tree, or online at http://nipy.org/nipy/stable/users/install_data.html
If you have the package, have you set the path to the package correctly?"""
for key, value in DATA_PKGS.items():
url = '%s%s-%s.tar.gz' % (NIPY_DATA_URL,
key,
value['min version'])
value['name'] = key
value['install hint'] = NIPY_INSTALL_HINT % url
del key, value, url
|