forked from secureworks/aristotle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (35 loc) · 1.4 KB
/
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
36
37
from setuptools import setup, find_packages
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="aristotle",
version="2.0.0",
author="David Wharton",
description="Script and library for the viewing, filtering, and modifying of Suricata and Snort rulesets based on interpreted key-value pairs present in the metadata keyword within each rule.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/secureworks/aristotle",
packages=find_packages(),
install_requires=[
"boolean.py>=3.6,<=3.8",
"python-dateutil",
"pyyaml"
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Networking :: Firewalls",
],
python_requires='>=2.7',
keywords='suricata, snort, metadata, ruleset, BETTER, IDS, IPS, NIDS, signatures',
project_urls={
'Documentation': 'https://aristotle-py.readthedocs.io/',
'Source': 'https://github.com/secureworks/aristotle',
},
)