Changeset 334

Show
Ignore:
Timestamp:
11/13/08 14:38:49 (2 months ago)
Author:
apdavison
Message:

More tweaks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/doc/wikidoc.py

    r100 r334  
    4242 
    4343#-- Process command line parameters -------------------------------------------- 
    44 if len(sys.argv) > 1: 
    45     output = sys.argv[1] 
    46 else: 
    47     output = 'wiki' 
     44output = sys.argv[1] 
     45modules = sys.argv[2:] 
     46 
    4847logging.info('Generating API documentation in %s format' % output) 
    4948 
     
    6564    horiz_line       = '\n----\n' 
    6665elif output == 'trac': 
     66    module_fmt       = '\n= %s =\n' 
    6767    default_arg_fmt  = '%s=%s' 
    6868    func_sig_fmt     = '%s(%s)' 
     
    160160 
    161161outputStr = '' 
    162 for module in __all__: 
     162for module in modules: #__all__: 
    163163    classes = {} 
    164164    functions = [] 
     
    200200        outputStr += '\definecolor{grey}{rgb}{0.5,0.5,0.5}\n' 
    201201     
     202    outputStr += module_fmt % module 
     203    #outputStr += _(eval(module).__doc__) 
    202204    logging.info("==== DATA ====") 
    203205    outputStr += category_fmt % "Data" 
  • trunk/setup.py

    r331 r334  
    1010                'NeuroTools.utilities', 
    1111                'NeuroTools.spike2', 
     12                'NeuroTools.spike2.sonpy', 
    1213                'NeuroTools.datastore', 
    1314                'NeuroTools.datastore.django_orm', 
     
    1617    author = "The NeuralEnsemble Community", 
    1718    author_email = "neurotools@neuralensemble.org", 
    18     url = "http://neuralensemble.org/NeuroTools", 
    1919    description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine", 
    2020    license = "GPLv2", 
  • trunk/src/__init__.py

    r331 r334  
    2626plotting   - routines for plotting and visualization. 
    2727datastore  - a consistent interface for persistent data storage (e.g. for caching intermediate results). 
     28random     - a set of classes representing statistical distributions 
    2829 
    2930Sub-package specific documentation is available by importing the 
     
    3435""" 
    3536 
    36 __all__ = ['analysis', 'parameters', 'plotting', 'sandbox', 'signals', 'stgen', 'io', 'datastore'] 
     37__all__ = ['analysis', 'parameters', 'plotting', 'signals', 'stgen', 'io', 'datastore', 'utilities', 'spike2', 'random'] 
    3738__version__ = "0.1.0 (Asynchronous Astrocyte)" 
    3839 
  • trunk/src/spike2/__init__.py

    r214 r334  
    2828dict_of_all_channels = load('filename') 
    2929 
    30  
    31  
    3230""" 
    3331 
    34 import son 
     32from sonpy import son 
     33 
    3534__all__ = ['spike2channels']