Skip to content

Commit

Permalink
Merge pull request #10 from glorello/add-setup-file
Browse files Browse the repository at this point in the history
Add setup.py file
  • Loading branch information
dgunter authored Jan 12, 2023
2 parents ef2d079 + 0e90327 commit 4e08267
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages
setup(
name='parsezeeklogs',
version='2.0.1',
description='A lightweight utility for programmatically reading and manipulating Zeek IDS (Bro IDS) log files and outputting into JSON or CSV format.',
author='Dan Gunter',
author_email='dangunter@gmail.com',
url='https://github.com/dgunter/parsezeeklogs',
packages=find_packages(include=['parsezeeklogs', 'parsezeeklogs.*']),
install_requires=[
'elasticsearch==7.16.1'
],
)

0 comments on commit 4e08267

Please sign in to comment.