2016-09-15 15:11:04 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-06-18 04:04:41 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-06-23 12:51:13 +02:00
|
|
|
from setuptools import setup, find_packages
|
2016-06-18 04:04:41 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='misp-modules',
|
|
|
|
version='1.0',
|
|
|
|
author='Alexandre Dulaunoy',
|
|
|
|
author_email='alexandre.dulaunoy@circl.lu',
|
|
|
|
maintainer='Alexandre Dulaunoy',
|
|
|
|
url='https://github.com/MISP/misp-modules',
|
|
|
|
description='MISP modules are autonomous modules that can be used for expansion and other services in MISP',
|
2016-06-23 12:51:13 +02:00
|
|
|
packages=find_packages(),
|
2016-09-15 15:11:04 +02:00
|
|
|
entry_points={'console_scripts': ['misp-modules = misp_modules:main']},
|
2016-06-18 04:04:41 +02:00
|
|
|
test_suite="tests",
|
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Security',
|
|
|
|
],
|
|
|
|
install_requires=[
|
|
|
|
'tornado',
|
|
|
|
'dnspython3',
|
|
|
|
'requests',
|
|
|
|
'urlarchiver',
|
|
|
|
'passivetotal',
|
|
|
|
'PyPDNS',
|
|
|
|
'pypssl',
|
|
|
|
'redis',
|
|
|
|
'pyeupi',
|
|
|
|
'ipasn-redis',
|
|
|
|
'asnhistory',
|
2016-08-12 13:33:08 +02:00
|
|
|
'stix',
|
2016-08-12 13:37:16 +02:00
|
|
|
'cybox',
|
2016-08-12 12:35:33 +02:00
|
|
|
'pillow',
|
|
|
|
'pytesseract',
|
2016-09-15 15:11:04 +02:00
|
|
|
'shodan',
|
2016-11-21 11:59:30 +01:00
|
|
|
],
|
2016-06-18 04:04:41 +02:00
|
|
|
)
|