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 8961f71 commit 51b4adcCopy full SHA for 51b4adc
setup.py
@@ -19,7 +19,7 @@
19
# limitations under the License.
20
21
22
-from os.path import dirname, join as path_join
+import os
23
from setuptools import find_packages, setup
24
25
from neo4j.meta import package, version
@@ -44,7 +44,11 @@
44
],
45
}
46
packages = find_packages(exclude=["tests"])
47
-readme = open(path_join(dirname(__file__), "README.rst")).read()
+
48
+readme_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "README.rst"))
49
+with open(readme_path, mode="r", encoding="utf-8") as fr:
50
+ readme = fr.read()
51
52
setup_args = {
53
"name": package,
54
"version": version,
0 commit comments