freebsd-ports/security/py-pyclamd/files/patch-setup.py
Martin Wilke 2367e4c0e0 pyClamd is a python interface to Clamd (Clamav daemon).
By using pyClamd, you can add virus detection capabilities
to your python software in an efficient and easy way.

PR:		ports/130312
Submitted by:	Milan Obuch
2009-01-09 23:24:06 +00:00

19 lines
480 B
Python

--- setup.py.orig 2009-01-07 13:42:10.000000000 +0100
+++ setup.py 2009-01-07 13:42:27.000000000 +0100
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+
+import glob
+import os
+import sys
+from distutils.core import setup
+
+setup(name="pyclamd",
+ version="0.1.1",
+ description="Python ClamD module.",
+ author="Alexandre Norman",
+ author_email="norman@xael.org",
+ url="http://xael.org/norman/python/pyclamd/",
+ license="GPL",
+ packages=['']
+ )