Set of Maltego transforms to inferface with a MISP Threat Sharing instance, and also to explore the whole MITRE ATT&CK dataset.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
1.4 KiB

  1. #!/usr/bin/env python3
  2. from setuptools import setup, find_packages
  3. with open("README.md", "r") as fh:
  4. long_description = fh.read()
  5. setup(
  6. name='MISP_maltego',
  7. author='Christophe Vandeplas',
  8. # also update version in util.py
  9. version='1.4.6',
  10. author_email='christophe@vandeplas.com',
  11. maintainer='Christophe Vandeplas',
  12. url='https://github.com/MISP/MISP-maltego',
  13. description='Maltego transform for interacting with a MISP Threat Sharing community and with MITRE ATT&CK.',
  14. long_description=long_description,
  15. license='AGPLv3',
  16. packages=find_packages('src'),
  17. package_dir={'': 'src'},
  18. zip_safe=False,
  19. classifiers=[
  20. 'License :: OSI Approved :: GNU Affero General Public License v3',
  21. 'Development Status :: 4 - Beta',
  22. 'Operating System :: POSIX :: Linux',
  23. 'Intended Audience :: Science/Research',
  24. 'Intended Audience :: Telecommunications Industry',
  25. 'Intended Audience :: Information Technology',
  26. 'Programming Language :: Python :: 3',
  27. 'Topic :: Security',
  28. 'Topic :: Internet',
  29. ],
  30. package_data={
  31. '': ['*.gif', '*.png', '*.conf', '*.mtz', '*.machine'] # list of resources
  32. },
  33. python_requires='>=3.5',
  34. install_requires=[
  35. 'canari>=3.3.10,<4',
  36. 'PyMISP>=2.4.127'
  37. ],
  38. dependency_links=[
  39. # custom links for the install_requires
  40. ]
  41. )