From 03e0b184a9b0bd7d939447a0db0a340dadaf5011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Fri, 28 May 2021 09:59:55 -0300 Subject: [PATCH 1/2] chore: move pytest to extras_require --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 81a85ea..3fa73c1 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,6 @@ from fullcontact.__about__ import * requirements = [ - # Test - "pytest==5.4.1", - # Prod "requests==2.23.0", "urllib3==1.25.7" ] @@ -32,5 +29,8 @@ python_requires='~=3.5', install_requires=requirements, + extras_require={ + 'develop': [ "pytest==5.4.1" ] + }, license=__license__ ) From 472006cae30d7494203463175aefe6818e1e8098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Fri, 28 May 2021 10:00:10 -0300 Subject: [PATCH 2/2] chore: add instructions to install development extras packages --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e62e71a..86f8515 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,12 @@ command. pip install python-fullcontact ``` +If you'd like to install the development version (with `pytest`), run instead: + +```shell +pip install 'python-fullcontact[develop]' +``` + It is also possible to install the package from this repo, by running the below commands. ```