From 40b4fe64af7446f56b612d0ea26bb2e0a5b4705a Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 23 Aug 2018 22:11:17 -0300 Subject: [PATCH] Fix linting --- doc/en/goodpractices.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst index b1bb0e81a..87d446d0d 100644 --- a/doc/en/goodpractices.rst +++ b/doc/en/goodpractices.rst @@ -12,13 +12,14 @@ 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 - + + 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:: +Where ``PACKAGENAME`` is the name of your package. You can then install your package in "editable" mode by running from the same directory:: pip install -e .