diff --git a/setup.py b/setup.py index 0d8e6d3..4324977 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,9 @@ from setuptools import setup, find_packages +with open("README.md", "r") as fh: + long_description = fh.read() + setup( name='MISP_maltego', author='Christophe Vandeplas', @@ -11,6 +14,7 @@ setup( maintainer='Christophe Vandeplas', url='https://github.com/MISP/MISP-maltego', description='Maltego transform for interacting with a MISP Threat Sharing community and with MITRE ATT&CK.', + long_description=long_description, license='AGPLv3', packages=find_packages('src'), package_dir={'': 'src'}, diff --git a/src/MISP_maltego/transforms/common/util.py b/src/MISP_maltego/transforms/common/util.py index ac42cf3..e5ec603 100644 --- a/src/MISP_maltego/transforms/common/util.py +++ b/src/MISP_maltego/transforms/common/util.py @@ -88,7 +88,7 @@ def get_misp_connection(config=None, parameters=None): misp_key = parameters['mispkey'].value except AttributeError: raise MaltegoException("ERROR: mispurl and mispkey need to be set to something valid") - misp_connection = PyMISP(misp_url, misp_key, misp_verify, 'json', misp_debug) + misp_connection = PyMISP(misp_url, misp_key, misp_verify, 'json', misp_debug, tool='misp_maltego') except Exception: if is_local_exec_mode(): raise MaltegoException("ERROR: Cannot connect to MISP server. Please verify your MISP_Maltego.conf settings.")