Skip to content

Commit 7ae2390

Browse files
authored
Merge pull request #3881 from GandalfSaxe/patch-2
Code block: :: missing and 4 spaces instead of 5
2 parents 4d19b94 + 5087747 commit 7ae2390

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

doc/en/goodpractices.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ 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

17-
from setuptools import setup, find_packages
17+
from setuptools import setup, find_packages
1818

19-
20-
setup(name="PACKAGENAME", packages=find_packages())
19+
setup(name="PACKAGENAME", packages=find_packages())
2120

2221
Where ``PACKAGENAME`` is the name of your package. You can then install your package in "editable" mode by running from the same directory::
2322

0 commit comments

Comments
 (0)