Changeset 1802

Show
Ignore:
Timestamp:
07/31/07 23:08:18 (1 year ago)
Author:
arj..@yirdis.nl
Message:

Updated long description

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/setup.cfg

    r1366 r1802  
    11[egg_info] 
    2 tag_build = .dev 
    3 tag_svn_revision = 1 
     2#tag_build = .dev 
     3#tag_svn_revision = 1 
    44 
    55[nosetests] 
  • gaphas/trunk/setup.py

    r1677 r1802  
     1 
     2VERSION = '0.3.0' 
    13 
    24from ez_setup import use_setuptools 
     
    3840setup( 
    3941    name='gaphas', 
    40     version='0.3.0'
     42    version=VERSION
    4143    description='Gaphas is a GTK+ based diagramming widget', 
    4244    long_description="""\ 
    4345Gaphas is a GTK+ based diagramming widget written in Python. 
    44 It is the logical successor of the DiaCanvas library. 
    4546 
    46 GTK+ and PyGTK is required. 
     47Gaphas is a MVC canvas that uses Cairo_ for rendering. One of the nicer things 
     48of this widget is that the user (model) is not bothered with bounding box 
     49calculations: this is all done through Cairo. 
     50 
     51Some more features: 
     52 
     53- Each item has it's own separate coordinate space (easy when items are 
     54  rotated). 
     55- Items on the canvas can be connected to each other. Connections are 
     56  maintained by a linear constraint solver. 
     57- Multiple views on one Canvas. 
     58- What is drawn is determined by Painters. Multiple painters can be used and 
     59  painters can be stacked. 
     60- User interaction is handled by Tools. Tools can be stacked. 
     61- Versatile undo/redo system 
     62 
     63GTK+ and PyGTK_ are required. 
     64 
     65.. _Cairo: http://cairographics.org/ 
     66.. _PyGTK: http://www.pygtk.org/ 
    4767""", 
    4868