We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a71a5c commit b5e4042Copy full SHA for b5e4042
setup.py
@@ -1,10 +1,12 @@
1
+import io
2
+
3
from setuptools import setup, find_packages
4
5
# This reads the __version__ variable from openfermionpyscf/_version.py
6
exec(open('openfermionpyscf/_version.py').read())
7
8
# Readme file as long_description:
-long_description = open('README.rst').read()
9
+long_description = io.open('README.rst', encoding='utf-8').read()
10
11
# Read in requirements.txt
12
requirements = open('requirements.txt').readlines()
0 commit comments