]> gitweb.michael.orlitzky.com - djbdns-logparse.git/blobdiff - setup.py
bin/djbdns-logparse: handle SIGINT (again).
[djbdns-logparse.git] / setup.py
index 4fe1afb6909559b30f921aeaeead966e5226d0e7..1a50178d7fb98c7f2f6c3b80d95e56c69b8cd632 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from distutils.core import setup
+from setuptools import setup
 
 setup(
     name         = 'djbdns-logparse',
@@ -6,9 +6,11 @@ setup(
     author       = 'Michael Orlitzky',
     author_email = 'michael@orlitzky.com',
     url          = 'http://michael.orlitzky.com/code/djbdns-logparse.xhtml',
+    keywords     = 'djbdns, tinydns, dnscache',
     scripts      = ['bin/djbdns-logparse'],
     packages     = ['djbdns'],
-    package_dir  = {'djbdns': 'src/djbdns'},
-    description  = 'Convert tinydns and dnscache logs to human-readable form',
-    license      = 'doc/LICENSE'
+    package_dir  = {'djbdns': 'djbdns'},
+    description  = 'Make tinydns and dnscache logs human-readable',
+    test_suite   = 'test.build_suite',
+    license      = 'AGPLv3+'
 )