Changeset 331
- Timestamp:
- 11/13/08 12:18:31 (2 months ago)
- Files:
-
- trunk/MANIFEST.in (added)
- trunk/setup.py (modified) (1 diff)
- trunk/src/__init__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r330 r331 11 11 'NeuroTools.spike2', 12 12 'NeuroTools.datastore', 13 'NeuroTools.datastore.django_orm', 13 14 ], 15 package_data={'NeuroTools': ['doc/*.txt', 'README']}, 14 16 author = "The NeuralEnsemble Community", 15 17 author_email = "neurotools@neuralensemble.org", 18 url = "http://neuralensemble.org/NeuroTools", 16 19 description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine", 17 20 license = "GPLv2", trunk/src/__init__.py
r313 r331 25 25 io - NeuroTools support for reading and writing of files in various formats. 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 28 29 29 Sub-package specific documentation is available by importing the … … 34 34 """ 35 35 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)" 39 38 40 39 #########################################################

