Changeset 125 for tags

Show
Ignore:
Timestamp:
10/29/08 05:21:23 (4 years ago)
Author:
lgs
Message:

Distutils does not support non ascii characters :(

Location:
tags/0.4.1
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • tags/0.4.1/CHANGES.txt

    r121 r125  
    1515- Chavier, a simple pygtk application for playing with Pycha charts (Lorenzo) 
    1616- Allow the legend to be placed relative to the right and bottom of the canvas 
    17   (Nicolas Évrard) 
     17  (Nicolas Evrard) 
    1818- Easier debugging by adding __str__ methods to aux classes (rectangle, point, 
    1919  area, ...) (Lorenzo) 
  • tags/0.4.1/setup.py

    r124 r125  
    2020 
    2121def 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() 
    2423 
    2524setup( 
     
    3130    long_description=( 
    3231        read('README.txt') 
    33         + u'\n\n' + 
     32        + '\n\n' + 
    3433        read('CHANGES.txt') 
    3534    ),