summaryrefslogtreecommitdiff
path: root/docs/src/userguide/numpy_pythran.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src/userguide/numpy_pythran.rst')
-rw-r--r--docs/src/userguide/numpy_pythran.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/src/userguide/numpy_pythran.rst b/docs/src/userguide/numpy_pythran.rst
index 185f7c654..cb075d729 100644
--- a/docs/src/userguide/numpy_pythran.rst
+++ b/docs/src/userguide/numpy_pythran.rst
@@ -16,22 +16,22 @@ This can lead to really interesting speedup in some cases, going from 2 up to
Please note that this feature is experimental.
-Usage example with distutils
-----------------------------
+Usage example with setuptools
+-----------------------------
You first need to install Pythran. See its `documentation
-<http://pythran.readthedocs.io/en/latest/>`_ for more information.
+<https://pythran.readthedocs.io/>`_ for more information.
Then, simply add a ``cython: np_pythran=True`` directive at the top of the
Python files that needs to be compiled using Pythran numpy support.
-Here is an example of a simple ``setup.py`` file using distutils:
+Here is an example of a simple ``setup.py`` file using setuptools:
.. code::
- from distutils.core import setup
+ from setuptools import setup
from Cython.Build import cythonize
-
+
setup(
name = "My hello app",
ext_modules = cythonize('hello_pythran.pyx')