Changeset 125
- Timestamp:
- 10/29/08 05:21:23 (3 years ago)
- Location:
- tags/0.4.1
- Files:
-
- 2 modified
-
CHANGES.txt (modified) (1 diff)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/0.4.1/CHANGES.txt
r121 r125 15 15 - Chavier, a simple pygtk application for playing with Pycha charts (Lorenzo) 16 16 - Allow the legend to be placed relative to the right and bottom of the canvas 17 (Nicolas Ãvrard)17 (Nicolas Evrard) 18 18 - Easier debugging by adding __str__ methods to aux classes (rectangle, point, 19 19 area, ...) (Lorenzo) -
tags/0.4.1/setup.py
r124 r125 20 20 21 21 def read(*rnames): 22 data = open(os.path.join(os.path.dirname(__file__), *rnames)).read() 23 return unicode(data, 'utf-8') 22 return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 24 23 25 24 setup( … … 31 30 long_description=( 32 31 read('README.txt') 33 + u'\n\n' +32 + '\n\n' + 34 33 read('CHANGES.txt') 35 34 ),
