-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·32 lines (30 loc) · 1006 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='bro-log-parser',
version='1.0.0',
url='https://github.com/elnappo/bro-log-parser',
license='MIT',
author='Fabian Weisshaar',
author_email='[email protected]',
description='Simple logfile parser for Bro IDS',
keywords='logfile parser',
platforms='any',
setup_requires=["pytest-runner"],
tests_require=["pytest"],
py_modules=['brologparse'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
],
)