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',