File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,11 @@ for installing your application and any dependencies
12
12
as well as the ``pytest `` package itself. This ensures your code and
13
13
dependencies are isolated from the system Python installation.
14
14
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::
16
16
17
- from setuptools import setup, find_packages
17
+ from setuptools import setup, find_packages
18
18
19
-
20
- setup(name="PACKAGENAME", packages=find_packages())
19
+ setup(name="PACKAGENAME", packages=find_packages())
21
20
22
21
Where ``PACKAGENAME `` is the name of your package. You can then install your package in "editable" mode by running from the same directory::
23
22
You can’t perform that action at this time.
0 commit comments