X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=1a50178d7fb98c7f2f6c3b80d95e56c69b8cd632;hb=64985a196f4cb7a6c41956172ed00f43471a6974;hp=622d2d4c541ae1cecf54ce11b04a0db8bf66bf61;hpb=53ddd1591251741e612f7ead8284b39590fef9a9;p=djbdns-logparse.git diff --git a/setup.py b/setup.py index 622d2d4..1a50178 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup setup( name = 'djbdns-logparse', @@ -6,7 +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'], - description = 'Convert tinydns and dnscache logs to human-readable form', - license = 'doc/LICENSE' + packages = ['djbdns'], + package_dir = {'djbdns': 'djbdns'}, + description = 'Make tinydns and dnscache logs human-readable', + test_suite = 'test.build_suite', + license = 'AGPLv3+' )