This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
53 lines (50 loc) · 1.65 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
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Tenzir",
author_email="engineering@tenzir.com",
classifiers=[
# https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Security",
"Topic :: Software Development :: Object Brokering",
"Topic :: System :: Distributed Computing",
],
description="The missing link to connect open-source threat intelligence tools.",
entry_points={"console_scripts": ["threatbus=threatbus.threatbus:main"]},
include_package_data=True,
install_requires=[
"black>=19.10b",
"coloredlogs>=10.0",
"dynaconf>=3.1.4,!=3.1.8",
"pluggy>=0.13",
"python-dateutil>=2.8.1",
"stix2-patterns == 1.3.0",
"stix2>=3.0",
],
keywords=[
"threatbus",
"threat intelligence",
"intel",
"sightings",
"open source threat intelligence",
],
license="BSD 3-clause",
long_description=long_description,
long_description_content_type="text/markdown",
name="threatbus",
packages=["threatbus"],
python_requires=">=3.7",
setup_requires=["setuptools", "wheel"],
url="https://github.com/tenzir/threatbus",
version="2022.5.16",
)