Changeset 171 for projects/AsynCluster/trunk/setup.py
- Timestamp:
- 05/01/08 15:10:42 (7 months ago)
- Files:
-
- projects/AsynCluster/trunk/setup.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
projects/AsynCluster/trunk/setup.py
r119 r171 40 40 41 41 ### Define setup options 42 kw = {'version':'0. 3',42 kw = {'version':'0.4', 43 43 'license':'GPL', 44 44 'platforms':'OS Independent', … … 55 55 'scripts':['ndm', 'console', 'coreworker'], 56 56 57 'zip_safe':True 57 'zip_safe':True, 58 'include_package_data':True, 58 59 } 59 60 … … 62 63 'taskqueue', 'queue', 'priority', 'tasks', 'jobs', 63 64 'cluster', 'clustering', 'parallel', 'grid', 64 ' genetic', 'evolution', 'evolutionary computing', 'GE', 'GA', 'GP']65 'Monte Carlo', 'stochastic', 'stochastic volatility', 'modeling'] 65 66 66 67 kw['classifiers'] = [ … … 79 80 80 81 kw['description'] = " ".join(""" 81 Asynchronous cluster management based on the Twisted framework, with 82 evolutionary computing tools for asynchronous node processing.82 Asynchronous cluster management based on the Twisted framework, with a 83 Population Monte Carlo package included as a usage example. 83 84 """.split("\n")) 84 85 … … 86 87 Asynchronous operation of a computing cluster with a Node Display Manager (NDM) 87 88 that allows regular workstation usage of cluster nodes with computing jobs 88 running behind the scenes. Includes evolutionary computing tools (under 89 construction) that make effective use of the asynchronous node processing 90 capabilities that are provided. 89 running behind the scenes. As a usage example, a package 'svpmc' for Population 90 Monte Carlo inference of multivariate stochastic volatility models is included. 91 91 """.split("\n")) 92 92
