from setuptools import setup setup( name = 'djbdns-logparse', 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': 'djbdns'}, description = 'Make tinydns and dnscache logs human-readable', test_suite = 'test.build_suite', license = 'AGPLv3+' )