-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.34 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="DCSO GmbH",
author_email="[email protected]",
classifiers=[
# https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
description="Application to extend FEVER BLF detection via Threat Bus IoCs",
entry_points={"console_scripts": ["fever-threatbus=fever_threatbus.fever:main"]},
include_package_data=True,
install_requires=[
"black >= 19.10b",
"dynaconf >= 3.1.4",
"pyzmq >= 19",
"stix2 >= 2.1, < 3.0",
"threatbus >= 2021.5.27",
"grpcio",
"protobuf",
],
keywords=[
"open source",
"threatbus",
"Threat Bus",
"threat intelligence",
"TI",
"TI dissemination",
],
license="BSD 3-clause",
long_description=long_description,
long_description_content_type="text/markdown",
name="fever-threatbus",
packages=["fever_threatbus"],
python_requires=">=3.7",
setup_requires=["setuptools", "wheel"],
url="https://github.com/satta/fever-threatbus",
version="0.1",
)