]> gitweb.michael.orlitzky.com - djbdns-logparse.git/blobdiff - setup.py
doc/COPYING: add one for the "or later" bit
[djbdns-logparse.git] / setup.py
index c569f13f62e2673ecf2d189adfa9bad2f9150534..f1db3c12c9a527a9144896867142ded8697d15f3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,15 +1,16 @@
-from distutils.core import setup
+from setuptools import setup
 
 setup(
     name         = 'djbdns-logparse',
-    version      = '0.0.1',
+    version      = '0.0.2',
     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+'
 )