]> gitweb.michael.orlitzky.com - djbdns-logparse.git/blob - setup.py
bin/djbdns-logparse.py: add a few more type hints where forgotten.
[djbdns-logparse.git] / setup.py
1 from distutils.core import setup
2
3 setup(
4 name = 'djbdns-logparse',
5 version = '0.0.1',
6 author = 'Michael Orlitzky',
7 author_email = 'michael@orlitzky.com',
8 url = 'http://michael.orlitzky.com/code/djbdns-logparse.xhtml',
9 scripts = ['bin/djbdns-logparse'],
10 description = 'Convert tinydns and dnscache logs to human-readable form',
11 license = 'doc/LICENSE'
12 )