-
Notifications
You must be signed in to change notification settings - Fork 114
/
setup.py
49 lines (45 loc) · 1.61 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
#!/usr/bin/env python
# ATTACK TAXII Client PIP Setup script
# Author: Roberto Rodriguez (@Cyb3rWard0g) Open Threat Research (OTR)
# License: BSD 3-Clause
# Reference:
# https://packaging.python.org/tutorials/packaging-projects/
from setuptools import find_packages, setup
with open('README.md')as f:
long_description = f.read()
setup(
name="attackcti",
version="0.4.4",
author="Roberto Rodriguez",
description="MITRE ATTACK CTI Python Libary",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OTRF/ATTACK-Python-Client",
project_urls={
"Documentation": "https://attackcti.com",
"Code": "https://github.com/OTRF/ATTACK-Python-Client",
"Issue tracker": "https://github.com/OTRF/ATTACK-Python-Client/issues",
},
keywords="threat hunting dfir cti cyber threat intelligence mitre att&ck",
packages=find_packages(),
install_requires=[
'stix2',
'taxii2-client',
'pydantic'
],
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Topic :: Security',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
)