Skip to content

Commit

Permalink
update __init__ file and requirements
Browse files Browse the repository at this point in the history
It also works with the most recent versions of IPy and dnspython
  • Loading branch information
Rafiot committed Feb 27, 2015
1 parent 473c1b7 commit ac506a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/rblcheck
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# vim:expandtab shiftwidth=4 softtabstop=4 tabstop=8

from rblwatch.rblwatch import RBLSearch
from rblwatch import RBLSearch
import socket

try:
Expand Down
2 changes: 1 addition & 1 deletion bin/rblwatch
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# vim:expandtab shiftwidth=4 softtabstop=4 tabstop=8

from rblwatch.rblwatch import RBLSearch
from rblwatch import RBLSearch
from IPy import IP
import socket
import sys
Expand Down
1 change: 1 addition & 0 deletions rblwatch/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from rblwatch import RBLSearch
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,5 @@
maintainer_email = '[email protected]',
url = 'https://github.com/drscream/rblwatch',
keywords = ['rbl', 'blacklist', 'mail'],
install_requires = [
'IPy == 0.81',
'dnspython == 1.11.1',
],
install_requires = ['IPy', 'dnspython'],
)

0 comments on commit ac506a4

Please sign in to comment.