Changeset 7547
- Timestamp:
- 31 Jan 2012, 12:02:08 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/branches/multimechanize/trunk/setup.py
r7541 r7547 25 25 VERSION = __version__ 26 26 PACKAGES = ['multimechanize',] 27 SCRIPTS = ['multimech-run', 'multimech-newproject']28 27 DESCRIPTION = 'Multi-Mechanize - Performance Test Framework' 29 28 URL = 'http://testutils.org/multimechanize' … … 46 45 'Topic :: System :: Benchmark', 47 46 ] 47 ENTRY_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 """ 48 54 49 55 params = dict( … … 51 57 version=VERSION, 52 58 packages=PACKAGES, 53 scripts=SCRIPTS,54 59 install_requires = REQUIREMENTS, 55 60 … … 62 67 url=URL, 63 68 classifiers=CLASSIFIERS, 69 entry_points=ENTRY_POINTS, 64 70 ) 65 71
Note: See TracChangeset for help on using the changeset viewer.