File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,14 @@ for installing your application and any dependencies
1212as well as the ``pytest `` package itself. This ensures your code and
1313dependencies 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
You can’t perform that action at this time.
0 commit comments