summaryrefslogtreecommitdiff
path: root/src/python/setup.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/setup.py.in')
-rw-r--r--src/python/setup.py.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/python/setup.py.in b/src/python/setup.py.in
index f8eeafc4..dc163a37 100644
--- a/src/python/setup.py.in
+++ b/src/python/setup.py.in
@@ -13,7 +13,6 @@ from Cython.Build import cythonize
from numpy import get_include as numpy_get_include
import sys
import pybind11
-from os import path
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
@@ -64,9 +63,8 @@ for module in pybind11_modules:
))
# read the contents of introduction.rst
-this_directory = path.abspath(path.dirname(__file__))
-with open(path.join(this_directory, 'introduction.rst'), encoding='utf-8') as f:
- long_description = f.read()
+with open("introduction.rst", "r") as fh:
+ long_description = fh.read()
setup(
name = 'gudhi',