Changeset 125 for tags/0.4.1/setup.py

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

Distutils does not support non ascii characters :(

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • 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    ),