Skip to content

Commit

Permalink
Restructure for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Nov 3, 2012
1 parent af5938b commit 89de463
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
*.py[cob]
.*.swp
build/
1 change: 1 addition & 0 deletions p0fclient/__init__.py
@@ -0,0 +1 @@
from p0fclient import *
File renamed without changes.
13 changes: 13 additions & 0 deletions setup.py
@@ -0,0 +1,13 @@
#!/usr/bin/env python

from distutils.core import setup

setup( name='p0fclient',
version='1.0',
description='Client for p0f API',
author='Daniel Miller',
author_email='daniel@bonsaiviking.com',
url='https://github.com/bonsaiviking/p0fclient',
packages=['p0fclient'],
requires=['ipaddr'],
)

0 comments on commit 89de463

Please sign in to comment.