-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
23 lines (20 loc) · 960 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# Setup script for ThreatIntel Conversion
from setuptools import setup
setup(
name="misp_stix_converter",
description="A tool to convert between STIX and MISP format",
version="0.2.10",
author="Hannah Ward",
author_email="hannah.ward@baesystems.com",
url="https://github.com/FloatingGhost/MISP-STIX-Converter",
packages=["misp_stix_converter", "misp_stix_converter.servers",
"misp_stix_converter.converters"],
install_requires=["pymisp>=2.4.56", "requests>=2.9.1", "pyaml>=3.11",
"stix>=1.2", "cybox>=2.0", "nose", "cabby", "maec"],
dependency_links=["git+https://github.com/MISP/PyMISP#egg=pymisp",
"git+https://github.com/STIXProject/python-stix.git",
"git+https://github.com/CybOXProject/python-cybox.git"],
scripts=["misp_stix_converter/misp-to-stix.py",
"misp_stix_converter/stix-to-misp.py"],
)