-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
48 lines (46 loc) · 1.83 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 os import path
from setuptools import setup
import misp_stix_converter
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='misp-stix',
version=misp_stix_converter.__version__,
author='Christian Studer',
author_email='[email protected]',
maintainer='Christian Studer',
url='https://github.com/MISP/misp-stix',
project_urls={
'Documentation': 'https://github.com/MISP/misp-stix/documentation',
'Source': 'https://github.com/MISP/misp-stix',
'Tracker': 'https://github.com/MISP/misp-stix/issues'
},
description='Python scripts to convert MISP into STIX or STIX into MISP',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
packages=['misp_stix_converter'],
entry_points={"console_scripts": ["misp_stix_converter = misp_stix_converter:main"]},
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security',
'Topic :: Internet',
],
install_requires=['pymisp', 'stix', 'misp-lib-stix2'],
tests_require=['pytest', 'flake8'],
include_package_data=True,
package_data={'misp_stix_converter': ['data/cti', 'data/misp-galaxy']}
)