From 508774742e3f55caa3d1b2942738ed778a4cb0cb Mon Sep 17 00:00:00 2001 From: Gandalf Saxe Date: Sun, 26 Aug 2018 11:54:08 +0200 Subject: [PATCH] Code block: :: missing and 4 spaces instead of 5 I just noticed the newly committed code block doesn't format as a code block without `::` in the paragraph before. Perhaps doesn't make a difference, but also corrected 5 spaces to 4 which seems standard. --- doc/en/goodpractices.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst index b3d903bad..70c369244 100644 --- a/doc/en/goodpractices.rst +++ b/doc/en/goodpractices.rst @@ -12,12 +12,11 @@ for installing your application and any dependencies as well as the ``pytest`` package itself. This ensures your code and dependencies are isolated from the system Python installation. -First you need to place a ``setup.py`` file in the root of your package with the following minimum content: +First you need to place a ``setup.py`` file in the root of your package with the following minimum content:: - from setuptools import setup, find_packages + from setuptools import setup, find_packages - - setup(name="PACKAGENAME", packages=find_packages()) + setup(name="PACKAGENAME", packages=find_packages()) Where ``PACKAGENAME`` is the name of your package. You can then install your package in "editable" mode by running from the same directory::