Changeset 4568

Show
Ignore:
Timestamp:
05/12/08 21:20:28 (3 months ago)
Author:
kevin
Message:

Sets up (and documents) Paver-based build for TG2. (Note that sdists
and bdists of TG2 do not require Paver. Only people working with
TG2 from svn will need Paver.)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/2.0/DownloadInstall.rst

    r4557 r4568  
    5555 $ svn co http://svn.turbogears.org/projects/tgrepozewho/trunk tgrepozewho 
    5656 
     57And then install Paver which manages TG2's build:: 
     58 
     59 easy_install Paver 
     60 
    5761tg2 package is TurboGears 2 core. Others are paster command plugins to create default template, admin interface, and migrations. 
    5862 
     
    6872 $ cd ..  
    6973 $ cd tg2   
    70  $ python setup.py develop 
     74 $ paver develop 
    7175 
    7276Install TurboGears 2 developer tools:: 
  • trunk/README.txt

    r4309 r4568  
    1919Other incorporated projects may be licensed under different licenses. 
    2020All licenses allow for non-commercial and commercial use. 
     21 
     22Working on TG2 
     23-------------- 
     24 
     25To be able to build TG2 packages or install it for development, you 
     26need Paver:: 
     27 
     28  easy_install Paver 
     29 
     30You can then run:: 
     31 
     32  paver develop 
     33 
     34to start working with the development version of TG2.