Changeset 710 for branches/0.6/setup.py

Show
Ignore:
Timestamp:
02/12/10 16:31:52 (2 years ago)
Author:
apdavison
Message:

Deleted some files that should not be part of the 0.6 branch

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.6/setup.py

    r708 r710  
    4141setup( 
    4242    name = "PyNN", 
    43     version = "0.6.0pre", 
     43    version = "0.6.0", 
    4444    package_dir={'pyNN': 'src'}, 
    4545    packages = ['pyNN','pyNN.nest', 'pyNN.pcsim', 'pyNN.neuron', 'pyNN.brian', 'pyNN.recording'], 
     
    4848    author_email = "pynn@neuralensemble.org", 
    4949    description = "A Python package for simulator-independent specification of neuronal network models", 
    50         long_description = """In other words, you can write the code for a model once, using the PyNN API and the Python_ programming language, and then run it without modification on any simulator that PyNN supports (currently NEURON, NEST, PCSIM and Brian). 
     50    long_description = """In other words, you can write the code for a model once, using the PyNN API and the Python_ programming language, and then run it without modification on any simulator that PyNN supports (currently NEURON, NEST, PCSIM and Brian). 
    5151 
    5252The API has two parts, a low-level, procedural API (functions ``create()``, ``connect()``, ``set()``, ``record()``, ``record_v()``), and a high-level, object-oriented API (classes ``Population`` and ``Projection``, which have methods like ``set()``, ``record()``, ``setWeights()``, etc.).