-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
executable file
·44 lines (41 loc) · 1.38 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='MISP_maltego',
author='Christophe Vandeplas',
# also update version in util.py
version='1.4.6',
author_email='[email protected]',
maintainer='Christophe Vandeplas',
url='https://github.com/MISP/MISP-maltego',
description='Maltego transform for interacting with a MISP Threat Sharing community and with MITRE ATT&CK.',
long_description=long_description,
license='AGPLv3',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Internet',
],
package_data={
'': ['*.gif', '*.png', '*.conf', '*.mtz', '*.machine'] # list of resources
},
python_requires='>=3.5',
install_requires=[
'canari>=3.3.10,<4',
'PyMISP>=2.4.127'
],
dependency_links=[
# custom links for the install_requires
]
)