-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
35 lines (33 loc) · 867 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
33
34
35
from setuptools import setup
import idstools
setup(
name="idstools",
version=idstools.version,
description="IDS Utility Library",
author="Jason Ish",
author_email="[email protected]",
packages=[
"idstools",
"idstools.rulecat",
"idstools.rulecat.configs",
"idstools.scripts",
"idstools.compat",
"idstools.compat.argparse",
],
url="https://github.com/jasonish/py-idstools",
license="BSD",
classifiers=[
'License :: OSI Approved :: BSD License',
],
scripts = [
"bin/idstools-dumpdynamicrules",
"bin/idstools-eve2pcap",
"bin/idstools-gensidmsgmap",
"bin/idstools-rulecat",
"bin/idstools-rulemod",
"bin/idstools-u2eve",
"bin/idstools-u2fast",
"bin/idstools-u2json",
"bin/idstools-u2spewfoo",
],
)