X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=setup.py;h=f1db3c12c9a527a9144896867142ded8697d15f3;hb=HEAD;hp=c569f13f62e2673ecf2d189adfa9bad2f9150534;hpb=b6f8dc1303972dea1743fbeaa16c6d329fc70ad0;p=djbdns-logparse.git diff --git a/setup.py b/setup.py index c569f13..f1db3c1 100644 --- 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+' )