Changeset 330

Show
Ignore:
Timestamp:
11/13/08 11:27:36 (2 months ago)
Author:
apdavison
Message:

Various minor changes. Corrected metadata in setup.py

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/INSTALL

    r297 r330  
    22======================= 
    33 
    4 First download the package files: 
     4First download the package files:: 
    55 
    6         svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools 
    7         cd NeuroTools 
     6        $ svn co https://neuralensemble.org/svn/NeuroTools/trunk NeuroTools 
     7        $ cd NeuroTools 
    88 
    9 Install as root (if you want a global install) 
     9Install as root (if you want a global install):: 
    1010 
    11         $ python setup.py install 
     11        # python setup.py install 
    1212 
    13 or for those without root access, install to a writable location, something like: 
     13or for those without root access, install to a writable location, something like:: 
    1414 
    15         # python setup.py install --prefix=$HOME/opt/mystuff 
     15        $ python setup.py install --prefix=$HOME/opt/mystuff 
    1616 
    17 Then you need to add the location:  
     17Then you need to add the location:: 
    1818 
    19 $HOME/opt/mystuff/lib/python2.5/site-packages/  
     19    $HOME/opt/mystuff/lib/python2.5/site-packages/  
    2020 
    2121to your PYTHONPATH or within python in your sys.path directive. 
     
    2424(obviously) replaced by your python version. 
    2525 
    26 Developers of NeuroTools may be interested in having their lastly updated version from SVN used by python (and therefore on python's path). A solution is to symbolically link the src folder to a folder included in the path: 
     26Developers of NeuroTools may be interested in using the last-updated version from svn. 
     27A solution is to symbolically link the src folder to a folder included in the path:: 
    2728 
    2829        cd my_local_site-packages_folder 
  • trunk/setup.py

    r303 r330  
    55setup( 
    66    name = "NeuroTools", 
    7     version = "0.1.0svn", 
     7    version = "0.1.0", 
    88    package_dir={'NeuroTools': 'src'}, 
    99    packages = ['NeuroTools', 
    10                 'NeuroTools.facets', 
    1110                'NeuroTools.utilities', 
    1211                'NeuroTools.spike2', 
     
    1413               ], 
    1514    author = "The NeuralEnsemble Community", 
    16     author_email = "pynn@neuralensemble.org", 
    17     description = "A meta-simulator framework based on PyNN", 
    18     license = "CeCILL", 
    19     keywords = ('computational neuroscience', 'PyNN', 'simulation', 'neuron', 'nest', 'nest2', 'pcsim', 'neuroml'), 
    20     url = "http://neuralensemble.org/trac/NeuroTools", 
     15    author_email = "neurotools@neuralensemble.org", 
     16    description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine", 
     17    license = "GPLv2", 
     18    keywords = ('computational neuroscience', 'simulation', 'analysis', 'visualization', 'parameters'), 
     19    url = "http://neuralensemble.org/NeuroTools", 
    2120     ) 
  • trunk/src/stgen.py

    r323 r330  
    160160    def poisson_generator(self, rate, t_start=0.0, t_stop=1000.0, array=False,debug=False): 
    161161        """ 
    162         Returns a SpikeList whose spikes are a realization of a Poisson process 
     162        Returns a SpikeTrain whose spikes are a realization of a Poisson process 
    163163        with the given rate (Hz) and stopping time t_stop (milliseconds). 
    164164 
     
    168168        Inputs: 
    169169            rate    - the rate of the discharge (in Hz) 
    170             t_start - the beginning of the final SpikeTrain object (in ms) 
    171             t_stop  - the end of the final SpikeTrain object (in ms) 
     170            t_start - the beginning of the SpikeTrain (in ms) 
     171            t_stop  - the end of the SpikeTrain (in ms) 
    172172            array   - if True, a numpy array of sorted spikes is returned, 
    173                       rather than a SpikeList object. 
     173                      rather than a SpikeTrain object. 
    174174 
    175175        Examples: