2018-11-12 13:25:53 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='MISP_maltego',
|
|
|
|
author='Christophe Vandeplas',
|
2019-06-12 12:39:52 +02:00
|
|
|
version='1.3.4',
|
2018-11-12 13:25:53 +01:00
|
|
|
author_email='christophe@vandeplas.com',
|
2019-01-31 14:53:21 +01:00
|
|
|
maintainer='Christophe Vandeplas',
|
|
|
|
url='https://github.com/MISP/MISP-maltego',
|
2019-06-12 12:39:52 +02:00
|
|
|
description='Maltego transform for interacting with a MISP Threat Sharing community and with MITRE ATT&CK.',
|
2018-11-12 13:25:53 +01:00
|
|
|
license='AGPLv3',
|
|
|
|
packages=find_packages('src'),
|
|
|
|
package_dir={'': 'src'},
|
|
|
|
zip_safe=False,
|
2019-01-31 14:53:21 +01:00
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
|
|
|
],
|
2018-11-12 13:25:53 +01:00
|
|
|
package_data={
|
|
|
|
'': ['*.gif', '*.png', '*.conf', '*.mtz', '*.machine'] # list of resources
|
|
|
|
},
|
2019-02-05 17:59:02 +01:00
|
|
|
python_requires='>=3.5',
|
2018-11-12 13:25:53 +01:00
|
|
|
install_requires=[
|
2019-03-16 18:31:46 +01:00
|
|
|
'canari>=3.3.10,<4',
|
2019-10-06 16:57:27 +02:00
|
|
|
'PyMISP>=2.4.114'
|
2018-11-12 13:25:53 +01:00
|
|
|
],
|
|
|
|
dependency_links=[
|
|
|
|
# custom links for the install_requires
|
|
|
|
]
|
|
|
|
)
|