Changeset 174:c3209bd5df14 for README

Show
Ignore:
Timestamp:
09/15/10 22:25:31 (20 months ago)
Author:
Menno Smits <menno@…>
Branch:
default
Message:

examples moved to imapclient/examples. Docs updated to match.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • README

    r163 r174  
    6868    python setup.py install 
    6969 
    70 The usual setuptools installation options are available. See 
    71 http://peak.telecommunity.com/DevCenter/EasyInstall for more info. 
     70The project is packaged using Distribute (mostly compatible with 
     71setuptools) and all the usual setup.py installation options are 
     72available. See http://packages.python.org/distribute/ for more info. 
    7273 
    73 See examples/example.py for a simple example of how to use IMAPClient. 
     74See imapclient/examples/example.py for a sample of how to use 
     75IMAPClient. If the IMAPClient was installed from PyPI the examples 
     76subdirectory can be found under whereever the imapclient package is 
     77installed. 
    7478 
    7579The code is well documented. See the docstrings for more usage 
     
    114118---------- 
    115119There are comprehensive unit tests for the FETCH response parser and a 
    116 growing number of other parts of the code. These tests use unittest 
    117 and can be run using "python setup.py test" or "python run_tests.py". 
     120growing number of other parts of the code. These tests use the 
     121unittest package from the standard library and can be run using 
     122"python run_tests.py".