Show
Ignore:
Timestamp:
03/22/08 21:01:32 (10 months ago)
Author:
edsuom
Message:

WinDictator? xnee rebuild; AsynCluster? fix; sAsync update to match SQLAlchemy update

Files:

Legend:

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

    r71 r128  
    66# 
    77 
    8 ### Imports and support 
    98import os, os.path 
    109from distutils.core import setup 
     
    1211NAME = 'Consolation' 
    1312 
    14 ### Define generic setup options 
    15 kw = {'platforms':'Linux'} 
     13kw = { 
     14    'name':NAME, 
     15    'version':'0.1', 
     16    'license':'GPL', 
     17    'platforms':'Linux', 
     18    'author':'Edwin A. Suominen', 
     19    'packages':['ezopt'], 
     20    } 
    1621kw['scripts'] = [ 
    1722    os.path.join('scripts', x) 
    1823    for x in os.listdir('scripts') 
    1924    if x.isalpha()] 
    20 setup(name=NAME, **kw) 
     25setup(**kw)