-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (31 loc) · 1.26 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
setup(
name='pymispgalaxies',
version='0.1',
author='Raphaël Vinot',
author_email='[email protected]',
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISPGalaxies',
description='Python API for the MISP Galaxies.',
packages=['pymispgalaxies'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
],
tests_requires=['nose'],
test_suite='nose.collector',
package_data={'pymispgalaxies': ['data/misp-galaxy/schema_*.json',
'data/misp-galaxy/clusters/*.json',
'data/misp-galaxy/galaxies/*.json',
'data/misp-galaxy/misp/*.json',
'data/misp-galaxy/vocabularies/common/*.json',
'data/misp-galaxy/vocabularies/threat-actor/*.json']}
)