Skip to content

Commit

Permalink
move test dependencies out of install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
joelferrier committed Sep 16, 2016
1 parent 7c42d7b commit 3171c06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ def run(self):
url="https://github.com/ThreatResponse/margaritashotgun",
download_url="https://github.com/ThreatResponse/margaritashotgun/archive/v0.3.1.tar.gz",
use_2to3=True,
install_requires=['pytest',
'pytest-cov',
'mock',
'boto3>=1.3.0',
install_requires=['boto3>=1.3.0',
'paramiko>=1.16.0',
'pyyaml>=3.11',
's3fs>=0.0.2',
'progressbar_latest',
'enum34',
'requests',
'xmltodict',
'logutils'])
'logutils'],
tests_require=['pytest',
'pytest-cov',
'mock'])

0 comments on commit 3171c06

Please sign in to comment.