Changeset 7552 for main/waeup.sirp/branches/multimechanize/trunk
- Timestamp:
- 2 Feb 2012, 07:57:54 (13 years ago)
- Location:
- main/waeup.sirp/branches/multimechanize/trunk
- Files:
-
- 31 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/branches/multimechanize/trunk/MANIFEST.in
r7541 r7552 5 5 recursive-include multimechanize *.py 6 6 recursive-include examples *.py *.cfg 7 recursive-include docs README *.py *.rst *.png *.css *.ico -
main/waeup.sirp/branches/multimechanize/trunk/README-ulif.txt
r7541 r7552 1 1 This is a clone from 2 2 3 rev 85467870789af941416641b8c7d595d8599290353 rev 569ffb4 4 4 5 of git clone https://code.google.com/p/multi-mechanize/ 6 5 of git clone git://github.com/cgoldberg/multi-mechanize.git -
main/waeup.sirp/branches/multimechanize/trunk/README.rst
r7541 r7552 4 4 ============================================ 5 5 6 copyright: (c) 2010-2012 Corey Goldberg (corey@goldb.org) 6 * Copyright: (c) 2010-2012 Corey Goldberg (corey@goldb.org) 7 * License: GNU LGPLv3 8 * Requires: Python 2.6 or 2.7 7 9 8 license: GNU Lesser General Public License version 3 (LGPLv3) 10 ---- 9 11 10 visit: http://multimechanize.com for info and instructions 12 :Web: `multimechanize.com <http://multimechanize.com>`_ 13 :Dev: `git repo <http://github.com/cgoldberg/multi-mechanize>`_ 14 :Twitter: `multimechanize tweets <http://twitter.com/multimechanize>`_ 15 :IRC: #multimech (freenode) 16 17 ---- 18 19 ------------------- 20 Setup / Install 21 ------------------- 22 23 install dependencies on Debian/Ubuntu:: 24 25 $ sudo apt-get install python-virtualenv python-matplotlib 26 27 install from dev branch in a virtualenv:: 28 29 $ virtualenv --system-site-packages multimech 30 $ cd multimech 31 $ source bin/activate 32 (multimech)$ pip install -e git+http://github.com/cgoldberg/multi-mechanize.git#egg=multimechanize 33 34 create a new project:: 35 36 (multimech)$ multimech-newproject my_project 37 38 run a project:: 39 40 (multimech)$ multimech-run my_project 41 -
main/waeup.sirp/branches/multimechanize/trunk/setup.py
r7547 r7552 14 14 import os 15 15 16 from setuptools import setup 16 from setuptools import setup, find_packages 17 17 18 18 from multimechanize import __version__ … … 24 24 NAME = 'multimechanize' 25 25 VERSION = __version__ 26 PACKAGES = ['multimechanize',]26 PACKAGES = find_packages(exclude=['ez_setup']) 27 27 DESCRIPTION = 'Multi-Mechanize - Performance Test Framework' 28 28 URL = 'http://testutils.org/multimechanize' … … 45 45 'Topic :: System :: Benchmark', 46 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 """ 47 CONSOLE_SCRIPTS = [ 48 'multimech-run = multimechanize.utilities.run:main', 49 'multimech-newproject = multimechanize.utilities.newproject:main', 50 'multimech-gridgui = multimechanize.utilities.gridgui:main', 51 ] 52 54 53 55 54 params = dict( … … 67 66 url=URL, 68 67 classifiers=CLASSIFIERS, 69 entry_points =ENTRY_POINTS,68 entry_points = { 'console_scripts': CONSOLE_SCRIPTS } 70 69 ) 71 70
Note: See TracChangeset for help on using the changeset viewer.