Commit de675069 authored by Jim Fulton's avatar Jim Fulton

Support latin-1 in long description.

parent 6c018c0a
...@@ -183,7 +183,7 @@ setup(name="ZODB3", ...@@ -183,7 +183,7 @@ setup(name="ZODB3",
"\n".join(doclines[2:]) + "\n\n" + "\n".join(doclines[2:]) + "\n\n" +
".. contents::\n\n" + ".. contents::\n\n" +
read_file("README.txt") + "\n\n" + read_file("README.txt") + "\n\n" +
read_file("src", "CHANGES.txt")), read_file("src", "CHANGES.txt")).decode('latin-1'),
test_suite="__main__.alltests", # to support "setup.py test" test_suite="__main__.alltests", # to support "setup.py test"
tests_require = ['zope.testing', 'manuel'], tests_require = ['zope.testing', 'manuel'],
extras_require = dict(test=['zope.testing', 'manuel']), extras_require = dict(test=['zope.testing', 'manuel']),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment