Changeset 950

Show
Ignore:
Timestamp:
07/18/06 05:01:56 (2 years ago)
Author:
arjanmol
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/demo.py

    r945 r950  
    1212import math 
    1313import gtk 
    14 from view import View 
    15 from canvas import Canvas 
    16 from examples import Box, Text 
    17 from item import Line, NW, SE 
    18 from tool import PlacementTool, HandleTool 
    19 from constraint import LineConstraint 
    20 from geometry import point_on_rectangle, distance_rectangle_point 
     14from gaphas import Canvas, View 
     15from gaphas.examples import Box, Text 
     16from gaphas.item import Line, NW, SE 
     17from gaphas.tool import PlacementTool, HandleTool 
     18from gaphas.constraint import LineConstraint 
     19from gaphas.geometry import point_on_rectangle, distance_rectangle_point 
    2120 
    2221DEFAULT_POINTER = gtk.gdk.LEFT_PTR 
  • gaphas/trunk/setup.py

    r945 r950  
    99    name='gaphas', 
    1010    version='0.1.0', 
    11     description='Gaphas is a GTK+ based diagraming widget', 
     11    description='Gaphas is a GTK+ based diagramming widget', 
    1212    long_description="""\ 
    13 Gaphas is a GTK+ based diagraming widget written in Python. 
    14 It is the logical succesor of the DiaCanvas library. 
     13Gaphas is a GTK+ based diagramming widget written in Python. 
     14It is the logical successor of the DiaCanvas library. 
    1515""", 
    1616 
     
    2323    'Programming Language :: Python', 
    2424    'Topic :: Software Development :: Libraries :: Python Modules', 
    25  
    2625    ], 
    2726