Changeset 181

Show
Ignore:
Timestamp:
02/12/07 04:06:53 (2 years ago)
Author:
mk
Message:

Changed occurences of 'cheesecake.py module' with 'cheesecake_index script'.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/README

    r171 r181  
    5555-------------- 
    5656 
    57 To compute the Cheesecake index for a given project, run the cheesecake.py  
    58 module from the command line and indicate either: 
     57To compute the Cheesecake index for a given project, run the cheesecake_index 
     58script from the command line and indicate either: 
    5959 
    6060 * the package short name (e.g. twill) or 
     
    6262 * the package path on the file system (e.g. /tmp/twill-latest.tar.gz) 
    6363 
    64 In all cases, the cheesecake module will attempt to download the package 
     64In all cases, the cheesecake script will attempt to download the package 
    6565if necessary, then to unpack it in a sandbox directory (/tmp/cheesecake_sandbox  
    6666by default). If either of these operations fails, the Cheesecake index for  
    6767the package will be 0. If the package can be successfully unpacked, the  
    68 cheesecake module will compute the values for a variety of indexes detailed 
     68cheesecake script will compute the values for a variety of indexes detailed 
    6969in the algorithm given at the end of this file. 
    7070 
     
    8080    utilities to download the package from PyPI:: 
    8181 
    82       python cheesecake.py --name=Durus 
     82      python cheesecake_index --name=Durus 
    8383 
    8484 2. Compute the Cheesecake index for the Durus package by indicating its URL:: 
    8585 
    86       python cheesecake.py --url=http://www.mems-exchange.org/software/durus/Durus-3.1.tar.gz 
     86      python cheesecake_index --url=http://www.mems-exchange.org/software/durus/Durus-3.1.tar.gz 
    8787 
    8888 3. Compute the Cheesecake index for the twill package by indicating its path  
    8989    on the local file system:: 
    9090 
    91       python cheesecake.py --path=/tmp/twill-latest.tar.gz 
     91      python cheesecake_index --path=/tmp/twill-latest.tar.gz 
    9292 
    9393 4. To increase the verbosity of the output, use the -v or --verbose option.  
    94     For more options, run cheesecake.py with -h or --help. 
     94    For more options, run cheesecake_index with -h or --help. 
    9595 
    9696Requirements