-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.56 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (39 loc) · 1.56 KB
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
38
39
40
41
42
43
44
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), "r") as fh:
long_description = fh.read()
with open(os.path.join(here, "VERSION"), "r") as fh:
version = fh.read().strip()
setup(
name="aristotle",
version=version,
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',
},
)