forked from sebdraven/IOCmite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.06 KB
/
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
24
25
26
27
28
29
30
31
32
33
"""Packaging tool for IOCMite"""
from setuptools import setup
"""Returns contents of README.md."""
with open("README.md", "r", encoding="utf-8") as readme_fp:
long_description = readme_fp.read()
setup(
name="iocmite",
version="0.1",
description="Import indicators of different data sources to dataset Suricata and add sightings in MISP on this indicators",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
],
keywords="misp suricata datasets",
url="https://github.com/sebdraven/IOCmite",
author="Sebastien Larinier @Sebdraven",
license="Apache",
packages=["suricata_misp", "scripts", "utils"],
install_requires=["pymisp", "redis", "tailer", "idstools"],
entry_points={
"console_scripts": ["iocmite=scripts.iocmite:main"],
},
include_package_data=True,
python_requires=">=3.6",
zip_safe=False,
)