Skip to content

Commit 6e73ff4

Browse files
committed
setup: add SRP as dependency in the library setup.py file
- 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 <diego.escalona@digi.com>
1 parent 3b28161 commit 6e73ff4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
DEPENDENCIES = (
1313
'pyserial>=3',
14+
'srp',
1415
)
1516

1617
here = path.abspath(path.dirname(__file__))
@@ -32,6 +33,7 @@
3233
python_requires='>=3',
3334
install_requires=[
3435
'pyserial>=3',
36+
'srp',
3537
],
3638
classifiers=[
3739
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)