Changeset 181
- Timestamp:
- 02/12/07 04:06:53 (2 years ago)
- Files:
-
- trunk/README (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README
r171 r181 55 55 -------------- 56 56 57 To compute the Cheesecake index for a given project, run the cheesecake .py58 modulefrom the command line and indicate either:57 To compute the Cheesecake index for a given project, run the cheesecake_index 58 script from the command line and indicate either: 59 59 60 60 * the package short name (e.g. twill) or … … 62 62 * the package path on the file system (e.g. /tmp/twill-latest.tar.gz) 63 63 64 In all cases, the cheesecake modulewill attempt to download the package64 In all cases, the cheesecake script will attempt to download the package 65 65 if necessary, then to unpack it in a sandbox directory (/tmp/cheesecake_sandbox 66 66 by default). If either of these operations fails, the Cheesecake index for 67 67 the package will be 0. If the package can be successfully unpacked, the 68 cheesecake modulewill compute the values for a variety of indexes detailed68 cheesecake script will compute the values for a variety of indexes detailed 69 69 in the algorithm given at the end of this file. 70 70 … … 80 80 utilities to download the package from PyPI:: 81 81 82 python cheesecake .py--name=Durus82 python cheesecake_index --name=Durus 83 83 84 84 2. Compute the Cheesecake index for the Durus package by indicating its URL:: 85 85 86 python cheesecake .py--url=http://www.mems-exchange.org/software/durus/Durus-3.1.tar.gz86 python cheesecake_index --url=http://www.mems-exchange.org/software/durus/Durus-3.1.tar.gz 87 87 88 88 3. Compute the Cheesecake index for the twill package by indicating its path 89 89 on the local file system:: 90 90 91 python cheesecake .py--path=/tmp/twill-latest.tar.gz91 python cheesecake_index --path=/tmp/twill-latest.tar.gz 92 92 93 93 4. To increase the verbosity of the output, use the -v or --verbose option. 94 For more options, run cheesecake .pywith -h or --help.94 For more options, run cheesecake_index with -h or --help. 95 95 96 96 Requirements
