summaryrefslogtreecommitdiff
path: root/src/python/setup.py.in
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-01 10:12:45 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-01 10:12:45 +0200
commit999ca34a509f6f6222a343306b725ce0bbbce795 (patch)
treee8ae885d3619cbbac8cb2c1ae6e73330635e5e54 /src/python/setup.py.in
parent524c5f3e8c48c25ad96d2e43634e73c18d8805c5 (diff)
Try to fix rst doc for Pypi
Diffstat (limited to 'src/python/setup.py.in')
-rw-r--r--src/python/setup.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/setup.py.in b/src/python/setup.py.in
index 4725bb44..f8eeafc4 100644
--- a/src/python/setup.py.in
+++ b/src/python/setup.py.in
@@ -63,7 +63,7 @@ for module in pybind11_modules:
runtime_library_dirs=runtime_library_dirs,
))
-# read the contents of introduction.md
+# 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()
@@ -83,8 +83,8 @@ setup(
},
description='The Gudhi library is an open source library for ' \
'Computational Topology and Topological Data Analysis (TDA).',
+ long_description_content_type='text/x-rst',
long_description=long_description,
- long_description_content_type='text/markdown',
ext_modules = ext_modules,
install_requires = ['cython','numpy >= 1.9',],
setup_requires = ['numpy >= 1.9','pybind11',],