Skip to content

Commit

Permalink
Add pip required files to build pip pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
drscream committed Aug 28, 2014
1 parent 0435526 commit 3c91039
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
include *.txt
recursive-include docs *.txt
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 import RBLSearch
from rblwatch.rblwatch import RBLSearch
import socket

try:
Expand Down
Empty file added rblwatch/__init__.py
Empty file.
2 changes: 0 additions & 2 deletions req.txt

This file was deleted.

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from distutils.core import setup
setup(
name = 'rblwatch',
packages = ['rblwatch'],
scripts = ['bin/rblcheck'],
version = '0.1.0',
description = 'RBL lookups with Python',
author = 'James Polera',
author_email = '[email protected]',
maintainer = 'Thomas Merkel',
maintainer_email = '[email protected]',
url = 'https://github.com/drscream/rblwatch',
keywords = ['rbl', 'blacklist', 'mail'],
install_requires = [
'IPy == 0.81',
'dnspython == 1.11.1',
],
)

0 comments on commit 3c91039

Please sign in to comment.