Changeset 950
- Timestamp:
- 07/18/06 05:01:56 (2 years ago)
- Files:
-
- gaphas/trunk/demo.py (moved) (moved from gaphas/trunk/gaphas/demo.py) (1 diff)
- gaphas/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/demo.py
r945 r950 12 12 import math 13 13 import 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 14 from gaphas import Canvas, View 15 from gaphas.examples import Box, Text 16 from gaphas.item import Line, NW, SE 17 from gaphas.tool import PlacementTool, HandleTool 18 from gaphas.constraint import LineConstraint 19 from gaphas.geometry import point_on_rectangle, distance_rectangle_point 21 20 22 21 DEFAULT_POINTER = gtk.gdk.LEFT_PTR gaphas/trunk/setup.py
r945 r950 9 9 name='gaphas', 10 10 version='0.1.0', 11 description='Gaphas is a GTK+ based diagram ing widget',11 description='Gaphas is a GTK+ based diagramming widget', 12 12 long_description="""\ 13 Gaphas is a GTK+ based diagram ing widget written in Python.14 It is the logical succes or of the DiaCanvas library.13 Gaphas is a GTK+ based diagramming widget written in Python. 14 It is the logical successor of the DiaCanvas library. 15 15 """, 16 16 … … 23 23 'Programming Language :: Python', 24 24 'Topic :: Software Development :: Libraries :: Python Modules', 25 26 25 ], 27 26
