Skip to content

Commit

Permalink
Merge pull request 3scale-qe#149 from mkudlej/fix_setup
Browse files Browse the repository at this point in the history
fix package requirements
  • Loading branch information
mkudlej authored Apr 5, 2024
2 parents 571b144 + e6a5256 commit 92c39da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
VERSION = sys.argv.pop(1)
assert re.match(r"[0-9]+\.[0-9]+\.[0-9]+", VERSION), "Version definition required as first arg"

requirements = ['requests']
requirements = ['requests', 'backoff']

extra_requirements = {
'dev': [
'pytest',
'coverage',
'mock',
'python-dotenv'
'python-dotenv',
'responses'

],
'docs': ['sphinx']
}
Expand Down

0 comments on commit 92c39da

Please sign in to comment.