Skip to content

Commit

Permalink
Merge pull request #12 from ribeirojose/master
Browse files Browse the repository at this point in the history
Move pytest to extras_require
  • Loading branch information
prakhar-j authored Jun 8, 2021
2 parents 5a08b34 + 472006c commit 784df40
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

```
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
from fullcontact.__about__ import *

requirements = [
# Test
"pytest==5.4.1",
# Prod
"requests==2.23.0",
"urllib3==1.25.7"
]
Expand All @@ -32,5 +29,8 @@

python_requires='~=3.5',
install_requires=requirements,
extras_require={
'develop': [ "pytest==5.4.1" ]
},
license=__license__
)

0 comments on commit 784df40

Please sign in to comment.