Changeset 241:8b70aa92733d
- Timestamp:
- Sep 4, 2018, 9:06:36 AM (4 years ago)
- Branch:
- default
- hg-git-rename-source:
- git
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r240 r241 28 28 egg_info.write_toplevel_names = _hacked_write_toplevel_names 29 29 30 with open('README.rst', 'r ') as f:31 long_description = f.read() 30 with open('README.rst', 'rb') as f: 31 long_description = f.read().decode('utf-8') 32 32 33 33 setup(name='wokkel', 34 34 description='Twisted Jabber support library', 35 long_description =long_description,35 long_description=long_description, 36 36 author='Ralph Meijer', 37 37 author_email='ralphm@ik.nu',
Note: See TracChangeset
for help on using the changeset viewer.