SigmaHQ/tools/setup.py
2019-10-21 11:58:26 +02:00

74 lines
2.6 KiB
Python

# Setup module for Sigma toolchain
# derived from example at https://github.com/pypa/sampleproject/blob/master/setup.py
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
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:
long_description = f.read()
setup(
name='sigmatools',
version='0.13',
description='Tools for the Generic Signature Format for SIEM Systems',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/Neo23x0/sigma',
author='Sigma Project',
author_email='thomas@patzke.org',
license='LGPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Internet :: Log Analysis',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
],
keywords='security monitoring siem logging signatures elasticsearch splunk ids sysmon',
packages=['sigma', 'sigma.backends', 'sigma.config', 'sigma.parser', 'sigma.parser.modifiers'],
python_requires='~=3.6',
install_requires=['PyYAML', 'pymisp'],
extras_require={
'test': ['coverage', 'yamllint'],
},
data_files=[
('etc/sigma', [
'config/sumologic.yml',
'config/logstash-defaultindex.yml',
'config/powershell.yml',
'config/logstash-windows.yml',
'config/splunk-windows.yml',
'config/splunk-windows-index.yml',
'config/netwitness.yml',
'config/arcsight.yml',
'config/qualys.yml',
'config/logstash-linux.yml',
'config/thor.yml',
'config/filebeat-defaultindex.yml',
'config/logpoint-windows.yml',
'config/helk.yml',
'config/qradar.yml',
'config/winlogbeat-modules-enabled.yml',
'config/winlogbeat.yml',
'config/winlogbeat-old.yml',
]),
('etc/sigma/generic', [
'config/generic/sysmon.yml',
'config/generic/windows-audit.yml',
])],
scripts=[
'sigmac',
'merge_sigma',
'sigma2misp',
]
)