Changeset 331

Show
Ignore:
Timestamp:
11/13/08 12:18:31 (2 months ago)
Author:
apdavison
Message:

Added a MANIFEST.in file, to make sure the docs get added to the source distribution.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/setup.py

    r330 r331  
    1111                'NeuroTools.spike2', 
    1212                'NeuroTools.datastore', 
     13                'NeuroTools.datastore.django_orm', 
    1314               ], 
     15    package_data={'NeuroTools': ['doc/*.txt', 'README']}, 
    1416    author = "The NeuralEnsemble Community", 
    1517    author_email = "neurotools@neuralensemble.org", 
     18    url = "http://neuralensemble.org/NeuroTools", 
    1619    description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine", 
    1720    license = "GPLv2", 
  • trunk/src/__init__.py

    r313 r331  
    2525io         - NeuroTools support for reading and writing of files in various formats.  
    2626plotting   - routines for plotting and visualization. 
    27  
     27datastore  - a consistent interface for persistent data storage (e.g. for caching intermediate results). 
    2828 
    2929Sub-package specific documentation is available by importing the 
     
    3434""" 
    3535 
    36  
    37  
    38 __all__ = ['analysis', 'parameters', 'plotting', 'sandbox', 'signals', 'stgen', 'io'] 
     36__all__ = ['analysis', 'parameters', 'plotting', 'sandbox', 'signals', 'stgen', 'io', 'datastore'] 
     37__version__ = "0.1.0 (Asynchronous Astrocyte)" 
    3938 
    4039#########################################################