This repository has been archived by the owner on Dec 23, 2022. It is now read-only.
forked from MISP/cti-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (50 loc) · 1.46 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
from setuptools import setup
from certau import package_name, package_version
setup(
name=package_name,
version=package_version,
description='CERT Australia cyber threat intelligence (CTI) toolkit',
url='https://github.com/certau/cti-toolkit/',
author='CERT Australia, Australian Government',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='STIX TAXII',
packages={
'certau',
'certau/util',
'certau/util/stix',
'certau/util/taxii',
'certau/scripts',
'certau/source',
'certau/transform',
},
entry_points={
'console_scripts': [
'stixtransclient.py=certau.scripts.stixtransclient:main',
],
},
install_requires=[
'configargparse',
'lxml',
'libtaxii>=1.1.111', # needed for user-agent support
'cybox==2.1.0.14',
'stix==1.2.0.4',
'stix-ramrod',
'mixbox',
'pymisp>=2.4.82',
'requests',
'six',
]
)