MISP-Taxii-Server/setup.py

20 lines
643 B
Python

#!/usr/bin/env python3
# Setup script for ThreatIntel Conversion
from setuptools import setup
import os
setup(
name="misp_taxii_hooks",
description="A little package just to install hooks to PYTHONPATH",
version="0.2",
author="Hannah Ward",
author_email="hannah.ward2@baesystems.com",
packages=['misp_taxii_hooks'],
install_requires=["zmq", "misp-stix-converter", "pymisp>=2.4.53", "pyaml>=3.11", "cabby>=0.1", "mysqlclient>=1.3.9", "nose>=1.3.7"],
scripts=["scripts/start-misp-taxii.sh", "scripts/push_published_to_taxii.py", "scripts/install-remote-server.sh",
"scripts/run-taxii-poll.py"]
)