misp-modules/setup.py

43 lines
1.2 KiB
Python
Raw Normal View History

2016-09-15 15:11:04 +02:00
#!/usr/bin/env python3
2016-06-18 04:04:41 +02:00
# -*- coding: utf-8 -*-
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',
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',
'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
)