-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (27 loc) · 979 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name = 'wazuh_findings_exporter',
packages = ['wazuh_findings_exporter'],
version = '1.1',
license='MIT',
description = 'Simple script that exports Wazuh Vulnerabilities by Agent groups',
author = 'Quirin Hardy Zießler',
author_email = '[email protected]',
url = 'https://github.com/quirinziessler/wazuh_findings_exporter',
download_url = 'https://github.com/quirinziessler/wazuh_findings_exporter',
keywords = ['Wazuh', 'exporter', 'DefectDojo', 'Wazuh API'],
install_requires=[
'urllib3',
'requests',
],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11',
],
)