Skip to content

Commit

Permalink
setup: add SRP as dependency in the library setup.py file
Browse files Browse the repository at this point in the history
- This will make the library to download and install the SRP module dependency
  automatically when installing the library from PyPI.

Signed-off-by: Diego Escalona <[email protected]>
  • Loading branch information
diescalo committed Jul 9, 2019
1 parent 3b28161 commit 6e73ff4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

DEPENDENCIES = (
'pyserial>=3',
'srp',
)

here = path.abspath(path.dirname(__file__))
Expand All @@ -32,6 +33,7 @@
python_requires='>=3',
install_requires=[
'pyserial>=3',
'srp',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 6e73ff4

Please sign in to comment.