SigmaHQ/tools/setup.py

68 lines
2.3 KiB
Python
Raw Normal View History

2017-12-07 23:32:41 +00:00
# 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
2017-12-09 21:13:25 +00:00
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
2017-12-07 23:32:41 +00:00
long_description = f.read()
setup(
2017-12-08 23:15:34 +00:00
name='sigmatools',
2019-01-13 23:26:03 +00:00
version='0.7.1',
2017-12-07 23:32:41 +00:00
description='Tools for the Generic Signature Format for SIEM Systems',
long_description=long_description,
url='https://github.com/Neo23x0/sigma',
author='Sigma Project',
2017-12-07 23:32:41 +00:00
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.5',
'Programming Language :: Python :: 3.6',
2019-01-13 23:26:03 +00:00
'Programming Language :: Python :: 3.7',
2017-12-07 23:32:41 +00:00
'Environment :: Console',
],
keywords='security monitoring siem logging signatures elasticsearch splunk ids sysmon',
2019-01-13 23:26:03 +00:00
packages=['sigma', 'sigma.backends', 'sigma.config', 'sigma.parser'],
2018-03-04 22:03:19 +00:00
python_requires='~=3.5',
2019-01-13 23:26:03 +00:00
install_requires=['PyYAML', 'pymisp'],
2017-12-07 23:32:41 +00:00
extras_require={
'test': ['coverage', 'yamllint'],
},
2018-07-02 22:07:43 +00:00
data_files=[
('etc/sigma', [
2019-01-13 23:26:03 +00:00
'config/qualys.yml',
2018-07-02 22:07:43 +00:00
'config/elk-defaultindex.yml',
2019-01-13 23:26:03 +00:00
'config/arcsight.yml',
'config/sumologic.yml',
'config/netwitness.yml',
2018-07-02 22:07:43 +00:00
'config/elk-windows.yml',
'config/helk.yml',
2019-01-13 23:26:03 +00:00
'config/elk-defaultindex-logstash.yml',
'config/elk-linux.yml',
2018-07-02 22:07:43 +00:00
'config/logpoint-windows-all.yml',
'config/spark.yml',
2019-01-13 23:26:03 +00:00
'config/elk-winlogbeat.yml',
'config/elk-defaultindex-filebeat.yml',
2018-07-02 22:07:43 +00:00
'config/splunk-windows-all.yml',
2019-01-13 23:26:03 +00:00
'config/qradar.yml',
'config/powershell-windows-all.yml',
2018-07-02 22:07:43 +00:00
])],
scripts=[
'sigmac',
2019-01-13 23:26:03 +00:00
'merge_sigma',
'sigma2misp',
2018-07-02 22:07:43 +00:00
]
2017-12-07 23:32:41 +00:00
)