-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 956 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 956 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='XForce',
version=0.8,
author="Julio Lira",
author_email="jul10l1r4@disroot.org",
description="IBM Security utilitary library in python. Search and query all sources: threat_activities and groups, malware_analysis, industries ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Jul10l1r4/x-force",
packages=["XForce", "XForce", "XForce.details"],
license="GPLv3",
keywords="threat intelligence security ibm xforce x-force blueteam search query api exchange otx cti oct",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Security",
],
)