Changeset 334
- Timestamp:
- 11/13/08 14:38:49 (2 months ago)
- Files:
-
- trunk/doc/wikidoc.py (modified) (4 diffs)
- trunk/setup.py (modified) (2 diffs)
- trunk/src/__init__.py (modified) (2 diffs)
- trunk/src/spike2/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/doc/wikidoc.py
r100 r334 42 42 43 43 #-- Process command line parameters -------------------------------------------- 44 if len(sys.argv) > 1: 45 output = sys.argv[1] 46 else: 47 output = 'wiki' 44 output = sys.argv[1] 45 modules = sys.argv[2:] 46 48 47 logging.info('Generating API documentation in %s format' % output) 49 48 … … 65 64 horiz_line = '\n----\n' 66 65 elif output == 'trac': 66 module_fmt = '\n= %s =\n' 67 67 default_arg_fmt = '%s=%s' 68 68 func_sig_fmt = '%s(%s)' … … 160 160 161 161 outputStr = '' 162 for module in __all__:162 for module in modules: #__all__: 163 163 classes = {} 164 164 functions = [] … … 200 200 outputStr += '\definecolor{grey}{rgb}{0.5,0.5,0.5}\n' 201 201 202 outputStr += module_fmt % module 203 #outputStr += _(eval(module).__doc__) 202 204 logging.info("==== DATA ====") 203 205 outputStr += category_fmt % "Data" trunk/setup.py
r331 r334 10 10 'NeuroTools.utilities', 11 11 'NeuroTools.spike2', 12 'NeuroTools.spike2.sonpy', 12 13 'NeuroTools.datastore', 13 14 'NeuroTools.datastore.django_orm', … … 16 17 author = "The NeuralEnsemble Community", 17 18 author_email = "neurotools@neuralensemble.org", 18 url = "http://neuralensemble.org/NeuroTools",19 19 description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine", 20 20 license = "GPLv2", trunk/src/__init__.py
r331 r334 26 26 plotting - routines for plotting and visualization. 27 27 datastore - a consistent interface for persistent data storage (e.g. for caching intermediate results). 28 random - a set of classes representing statistical distributions 28 29 29 30 Sub-package specific documentation is available by importing the … … 34 35 """ 35 36 36 __all__ = ['analysis', 'parameters', 'plotting', 's andbox', 'signals', 'stgen', 'io', 'datastore']37 __all__ = ['analysis', 'parameters', 'plotting', 'signals', 'stgen', 'io', 'datastore', 'utilities', 'spike2', 'random'] 37 38 __version__ = "0.1.0 (Asynchronous Astrocyte)" 38 39 trunk/src/spike2/__init__.py
r214 r334 28 28 dict_of_all_channels = load('filename') 29 29 30 31 32 30 """ 33 31 34 import son 32 from sonpy import son 33 35 34 __all__ = ['spike2channels']

