Metadata-Version: 1.0
Name: multi-mechanize
Version: 1.2.0
Summary: Multi-Mechanize - Performance Test Framework
Home-page: http://multimechanize.com
Author: Corey Goldberg
Author-email: corey@goldb.org
License: UNKNOWN
Description: 
        ================================================
            Multi-Mechanize - Performance Test Framework
        ================================================
        
        * Copyright: (c) 2010-2012 Corey Goldberg (corey@goldb.org)
        * License: GNU LGPLv3
        * Requires: Python 2.6 or 2.7
        
        ----
        
        :Web: `multimechanize.com <http://multimechanize.com>`_
        :PyPI: `multi-mechanize <http://pypi.python.org/pypi/multi-mechanize>`_
        :Dev: `git repo <http://github.com/cgoldberg/multi-mechanize>`_
        :Twitter: `multimechanize tweets <http://twitter.com/multimechanize>`_
        :IRC: #multimech (freenode)
        
        ----
        
        ***********************
            Docs / Instructions
        ***********************
        
        please visit: http://multimechanize.com
        
        *******************
            Install / Setup
        *******************
        
        Multi-Mechanize can be installed from `PyPI <http://pypi.python.org/pypi/multi-mechanize>`_ using `pip <http://www.pip-installer.org>`_::
            
            pip install -U multi-mechanize
        
        ... or download the `source distribution from PyPI <http://pypi.python.org/pypi/multi-mechanize#downloads>`_, unarchive, and run::
        
            python setup.py install
        
        ... then use ``multimech-newproject`` and ``multimech-run`` to create and run your performance test projects.
        
        ****************************
            Detailed Install / Setup
        ****************************
        
        These instructions are for Debian/Ubuntu Linux.  For other 
        platforms, the setup is generally the same, with the exeption of 
        installing system dependencies.  
        
        -----------------------
            system-wide install
        -----------------------
        
        * install dependencies on Debian/Ubuntu::
        
            $ sudo apt-get install python-pip python-matplotlib
            
        * install multi-mechanize from PyPI using Pip::
        
            $ sudo pip install -U multi-mechanize
            
        * create a new project::
        
            $ multimech-newproject my_project
        
        * run a project::
        
            $ multimech-run my_project
        
           
        -------------------------------------------------------------
            virtualenv + pip install (with matplotlib system package)
        -------------------------------------------------------------
        
        * install dependencies on Debian/Ubuntu::
        
            $ sudo apt-get install python-virtualenv python-matplotlib
        
        * install multi-mechanize from PyPI in a virtualenv::
        
            $ virtualenv --system-site-packages ENV
            $ cd ENV
            $ source bin/activate
            (ENV)$ pip install multi-mechanize
            
        ------------------------------------------------------
            virtualenv + pip install (with --no-site-packages)
        ------------------------------------------------------
        
        * install dependencies on Debian/Ubuntu::
        
            $ sudo apt-get install build-essential libfreetype6-dev libpng-dev
            $ sudo apt-get install python-dev python-virtualenv
        
        * install multi-mechanize and matplotlib from PyPI in a virtualenv::
        
            $ virtualenv ENV
            $ cd ENV
            $ source bin/activate
            (ENV)$ pip install multi-mechanize
            (ENV)$ pip install matplotlib
        
        -----------------------------------------------
            pip install latest dev branch from git repo
        -----------------------------------------------
        
        ::
        
            pip install -e git+http://github.com/cgoldberg/multi-mechanize.git#egg=multimechanize
        
        
Keywords: performance,scalability,load,test,testing,benchmark
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
Classifier: Topic :: System :: Benchmark
