root/subprojects/Wuming/trunk/setup.py
| Revision 444 (by djfroofy, 02/11/08 11:11:05) |
|---|
#!/usr/bin/env python # Try to use setuptools from http://peak.telecommunity.com/DevCenter/setuptools try: from setuptools import setup except: try: from ez_setup import use_setuptools use_setuptools() except: from warnings import warning warning('Failed loading setuptools ... "trying" standard distutils') from distutils.core import setup VERSION="0.0.1" setup( author='Drew Smathers', author_email='andrew.smathers@turner.com', name='wuming', version=VERSION, description='', install_requires=['twisted', 'Genshi', "pycrypto", "xix-utils"], url='http://xix.python-hosting.com/#wuming', packages=['wuming', 'wuming.templates'], package_dir={'wuming': 'wuming'}, entry_points = { 'console_scripts' : [ 'sshcmd = wuming.sshcmds:main', ] } )
Note: See TracBrowser for help on using the browser.
