-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch back to scapy, pin some package versions, create new release (#49
) * switch back to scapy * pin some package versions and create new release * fix this version * misc changes
- Loading branch information
Showing
4 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name = 'rpi-security', | ||
version = '1.3', | ||
version = '1.4', | ||
author = 'Max Williams', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/FutureSharks/rpi-security', | ||
|
@@ -20,18 +20,18 @@ | |
('/var/lib/rpi-security', ['etc/data.yaml']) | ||
], | ||
install_requires = [ | ||
'python-telegram-bot', | ||
'picamera', | ||
'imutils', | ||
'python-telegram-bot==12.2.0', | ||
'picamera==1.13', | ||
'imutils==0.5.2', | ||
'numpy', | ||
'configparser', | ||
'requests', | ||
'requests[security]', | ||
'netaddr', | ||
'netifaces', | ||
'pyyaml', | ||
'kamene', | ||
'Pillow', | ||
'scapy==2.4.3', | ||
'Pillow==6.2.1', | ||
'opencv-contrib-python', | ||
'opencv-contrib-python-headless', | ||
], | ||
|