blob: 29b7fcfcb8b35c9bdd8aa139a66e86067ed5f972 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- 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.2.2",
+ description="Python ClamD module.",
+ author="Alexandre Norman",
+ author_email="norman@xael.org",
+ url="http://xael.org/norman/python/pyclamd/",
+ license="GPL",
+ packages=['']
+ )
|