From 19cc299c5712a3a01a476b35ea35906d313847f5 Mon Sep 17 00:00:00 2001 From: Thomas Patzke Date: Sat, 9 Dec 2017 22:13:25 +0100 Subject: [PATCH] Added PyPI README --- tools/README.md | 10 ++++++++++ tools/setup.py | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 tools/README.md diff --git a/tools/README.md b/tools/README.md new file mode 100644 index 000000000..798446ae2 --- /dev/null +++ b/tools/README.md @@ -0,0 +1,10 @@ +This package contains libraries for processing of [Sigma rules](https://github.com/Neo23x0/sigma) and the following +command line tools: + +* *sigmac*: converter between Sigma rules and SIEM queries: + * Elasticsearch query strings + * Kibana JSON with searches + * Splunk SPL queries + * Elasticsearch X-Pack Watcher + * Logpoint queries +* *merge_sigma*: Merge Sigma collections into simple Sigma rules. diff --git a/tools/setup.py b/tools/setup.py index 50e74da48..e87a0b720 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -8,12 +8,12 @@ from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file -with open(path.join(here, '../README.md'), encoding='utf-8') as f: +with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='sigmatools', - version='0.1', + version='0.1.1', description='Tools for the Generic Signature Format for SIEM Systems', long_description=long_description, url='https://github.com/Neo23x0/sigma',