Added PyPI README

This commit is contained in:
Thomas Patzke 2017-12-09 22:13:25 +01:00
parent fd7b7bb438
commit 19cc299c57
2 changed files with 12 additions and 2 deletions

10
tools/README.md Normal file
View File

@ -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.

View File

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