Changeset 7547 for main


Ignore:
Timestamp:
31 Jan 2012, 12:02:08 (13 years ago)
Author:
uli
Message:

Let setuptools install scripts (and buildout).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/branches/multimechanize/trunk/setup.py

    r7541 r7547  
    2525VERSION = __version__
    2626PACKAGES = ['multimechanize',]
    27 SCRIPTS = ['multimech-run', 'multimech-newproject']
    2827DESCRIPTION = 'Multi-Mechanize - Performance Test Framework'
    2928URL = 'http://testutils.org/multimechanize'
     
    4645    'Topic :: System :: Benchmark',
    4746]
     47ENTRY_POINTS="""
     48      # Add entry points here
     49      [console_scripts]
     50      multimech-run = multimechanize.scripts.run:main
     51      multimech-newproject = multimechanize.scripts.newproject:main
     52      multimech-gridgui = multimechanize.scripts.gridgui:main
     53"""
    4854
    4955params = dict(
     
    5157    version=VERSION,
    5258    packages=PACKAGES,
    53     scripts=SCRIPTS,
    5459    install_requires = REQUIREMENTS,
    5560
     
    6267    url=URL,
    6368    classifiers=CLASSIFIERS,
     69    entry_points=ENTRY_POINTS,
    6470)
    6571
Note: See TracChangeset for help on using the changeset viewer.