mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-14 03:07:56 -08:00
17 lines
413 B
Diff
17 lines
413 B
Diff
https://bugs.gentoo.org/show_bug.cgi?id=429914
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1,10 +1,11 @@
|
|
# -*- coding: utf-8 -*-
|
|
|
|
+import codecs
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
HERE = os.path.dirname(os.path.abspath(__file__))
|
|
-long_desc = open(os.path.join(HERE, 'README')).read()
|
|
+long_desc = codecs.open(os.path.join(HERE, 'README'), encoding='utf-8').read()
|
|
|
|
requires = ['Sphinx>=0.6']
|
|
|