Files
blue-team-tools/tools/setup.py
T
Thomas Patzke 68d8afe4e6 Intermediate refactoring commit: moving code into package
Further splitting sigma.py into smaller parts.
2017-12-08 21:45:05 +01:00

46 lines
1.8 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='Sigma',
version='0.1',
description='Tools for the Generic Signature Format for SIEM Systems',
long_description=long_description,
url='https://github.com/Neo23x0/sigma',
author='Thomas Patzke',
author_email='thomas@patzke.org',
license='LGPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Environment :: Console',
],
keywords='security monitoring siem logging signatures elasticsearch splunk ids sysmon',
packages=['sigma'],
python_requires='~=3.3',
install_requires=['PyYAML'],
extras_require={
'test': ['coverage', 'yamllint'],
},
data_files=[('config', ['tools/config/elk-windows.yml', 'tools/config/elk-linux.yml', 'tools/config/elk-defaultindex.yml', 'tools/config/splunk-windows-all.yml', 'tools/config/splunk-windows-all.yml'])],
scripts=['tools/sigmac.py', 'tools/merge_sigma.py']
)