Changeset 7552 for main/waeup.sirp


Ignore:
Timestamp:
2 Feb 2012, 07:57:54 (13 years ago)
Author:
uli
Message:

multimech switched to github and incorporated changes officially we applied locally before. This is an update to stick with the latest source from official repos.

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  
    55recursive-include multimechanize *.py
    66recursive-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  
    11This is a clone from
    22
    3 rev 85467870789af941416641b8c7d595d859929035
     3rev 569ffb4
    44
    5 of git clone https://code.google.com/p/multi-mechanize/
    6 
     5of git clone git://github.com/cgoldberg/multi-mechanize.git
  • main/waeup.sirp/branches/multimechanize/trunk/README.rst

    r7541 r7552  
    44============================================
    55
    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
    79
    8 license: GNU Lesser General Public License version 3 (LGPLv3)
     10----
    911
    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
     23install dependencies on Debian/Ubuntu::
     24
     25    $ sudo apt-get install python-virtualenv python-matplotlib
     26
     27install 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
     34create a new project::
     35
     36    (multimech)$ multimech-newproject my_project
     37
     38run a project::
     39
     40    (multimech)$ multimech-run my_project
     41
  • main/waeup.sirp/branches/multimechanize/trunk/setup.py

    r7547 r7552  
    1414import os
    1515
    16 from setuptools import setup
     16from setuptools import setup, find_packages
    1717
    1818from multimechanize import __version__
     
    2424NAME = 'multimechanize'
    2525VERSION = __version__
    26 PACKAGES = ['multimechanize',]
     26PACKAGES = find_packages(exclude=['ez_setup'])
    2727DESCRIPTION = 'Multi-Mechanize - Performance Test Framework'
    2828URL = 'http://testutils.org/multimechanize'
     
    4545    'Topic :: System :: Benchmark',
    4646]
    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 """
     47CONSOLE_SCRIPTS = [
     48    'multimech-run = multimechanize.utilities.run:main',
     49    'multimech-newproject = multimechanize.utilities.newproject:main',
     50    'multimech-gridgui = multimechanize.utilities.gridgui:main',
     51]
     52
    5453
    5554params = dict(
     
    6766    url=URL,
    6867    classifiers=CLASSIFIERS,
    69     entry_points=ENTRY_POINTS,
     68    entry_points = { 'console_scripts': CONSOLE_SCRIPTS }
    7069)
    7170
Note: See TracChangeset for help on using the changeset viewer.