2016-11-18 10:28:00 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="misp_taxii_hooks",
|
|
|
|
description="A little package just to install hooks to PYTHONPATH",
|
2016-12-28 11:53:56 +01:00
|
|
|
version="0.2",
|
2016-11-18 10:28:00 +01:00
|
|
|
author="Hannah Ward",
|
|
|
|
author_email="hannah.ward2@baesystems.com",
|
|
|
|
packages=['misp_taxii_hooks'],
|
2019-02-12 18:11:36 +01:00
|
|
|
scripts=["scripts/start-misp-taxii.sh",
|
|
|
|
"scripts/push_published_to_taxii.py",
|
|
|
|
"scripts/install-remote-server.sh",
|
2017-03-31 11:41:14 +02:00
|
|
|
"scripts/run-taxii-poll.py"]
|
2016-11-18 10:28:00 +01:00
|
|
|
)
|