Skip to content

Commit

Permalink
fix setup.py to install test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed Feb 6, 2022
1 parent e51a464 commit 13f6c40
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,15 @@
]

tests_require = [
'pytest==5.4.3',
'pytest-cov',
'pytest-django',
'coverage',
'mock'
"pytest==5.4.3",
"pytest-cov==2.11.1",
"pytest-django==3.9.0",
"pytest-mock==3.5.1"
"pylama==7.7.1"
"pylint==2.7.3"
"pytest-black==0.3.12"
"black==21.5b0",
"django-environ==0.4.5",
]


Expand Down Expand Up @@ -47,6 +51,10 @@
"Topic :: Security :: Cryptography",
"Topic :: Communications",
],
setup_requires=["pytest-runner"],
install_requires=install_requires,
tests_require=tests_require,
extras_require={
"tests": tests_require,
},
)

0 comments on commit 13f6c40

Please sign in to comment.