forked from jasonish/py-idstools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 698 Bytes
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
from setuptools import setup
import idstools
setup(
name="idstools",
version=idstools.version,
description="IDS Utility Library",
author="Jason Ish",
author_email="ish@unx.ca",
packages=[
"idstools",
"idstools.scripts",
"idstools.compat",
"idstools.compat.argparse",
"idstools.ruleman",
"idstools.ruleman.commands",
],
url="https://github.com/jasonish/py-idstools",
license="BSD",
classifiers=[
'License :: OSI Approved :: BSD License',
],
scripts = [
"bin/idstools-gensidmsgmap",
"bin/idstools-u2fast",
"bin/idstools-u2json",
"bin/idstools-ruleman",
],
)