Fix linting

This commit is contained in:
Bruno Oliveira 2018-08-23 22:11:17 -03:00
parent 3f336869e2
commit 40b4fe64af
1 changed files with 4 additions and 3 deletions

View File

@ -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 .