- Timestamp:
- 02/12/10 16:31:52 (2 years ago)
- Location:
- branches/0.6
- Files:
-
- 3 removed
- 5 modified
-
MANIFEST.in (modified) (1 diff)
-
changelog (modified) (1 diff)
-
setup.py (modified) (2 diffs)
-
src/__init__.py (modified) (1 diff)
-
src/common.py (modified) (1 diff)
-
src/connectors2.py (deleted)
-
src/moose (deleted)
-
src/neuroml.py (deleted)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.6/MANIFEST.in
r640 r710 1 1 include src/hoc/*.mod 2 include test/parameters/* 3 include test/*tests.py 2 include test/system/*.py 3 include test/system/parameters/* 4 include test/regression/*.py 4 5 include test/unittests/*.py 5 6 include examples/*.py -
branches/0.6/changelog
r706 r710 1 1 ==================== 2 Release 0.6.0 (r ???)2 Release 0.6.0 (r710) 3 3 ==================== 4 4 -
branches/0.6/setup.py
r708 r710 41 41 setup( 42 42 name = "PyNN", 43 version = "0.6.0 pre",43 version = "0.6.0", 44 44 package_dir={'pyNN': 'src'}, 45 45 packages = ['pyNN','pyNN.nest', 'pyNN.pcsim', 'pyNN.neuron', 'pyNN.brian', 'pyNN.recording'], … … 48 48 author_email = "pynn@neuralensemble.org", 49 49 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). 51 51 52 52 The 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.). -
branches/0.6/src/__init__.py
r706 r710 66 66 """ 67 67 68 __version__ = '0.6.0 pre( $Rev$)'.replace(' $','')68 __version__ = '0.6.0 ( $Rev$)'.replace(' $','') 69 69 __all__ = ["common", "random", "nest", "neuron", "pcsim", "brian", "recording"] 70 70 -
branches/0.6/src/common.py
r702 r710 1224 1224 raise TypeError("Can't inject current into a spike source.") 1225 1225 current_source.inject_into(self) 1226 1227 def getSubPopulation(self, cells): 1228 """ 1229 Returns a sub population from a population object. The shape of cells will 1230 determine the dimensions of the sub population. cells should contains cells 1231 member of the parent population. 1232 Ex z = pop.getSubPopulation([pop[1],pop[3],pop[5]]) 1233 """ 1234 raise NotImplementedError() 1226 1235 1227 1236 1228 # ==============================================================================
