Skip to content

Commit 40b4fe6

Browse files
committed
Fix linting
1 parent 3f33686 commit 40b4fe6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

doc/en/goodpractices.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ for installing your application and any dependencies
1212
as well as the ``pytest`` package itself. This ensures your code and
1313
dependencies are isolated from the system Python installation.
1414

15-
First you need to place a `setup.py` file in the root of your package with the following minimum content:
15+
First you need to place a ``setup.py`` file in the root of your package with the following minimum content:
1616

1717
from setuptools import setup, find_packages
18-
18+
19+
1920
setup(name="PACKAGENAME", packages=find_packages())
2021

21-
Where `PACKAGENAME` is the name of your package. You can then install your package in "editable" mode by running from the same directory::
22+
Where ``PACKAGENAME`` is the name of your package. You can then install your package in "editable" mode by running from the same directory::
2223

2324
pip install -e .
2425

0 commit comments

Comments
 (0)