-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (27 loc) · 913 Bytes
/
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
from setuptools import setup
from maltego_stix2 import VERSION
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
dependencies = [
'Pillow==9.2.0',
'maltego-trx==1.6.0',
'stix2==3.0.1',
'python-dateutil==2.8.1'
]
setup(
name='maltego-stix2',
version=VERSION,
description='Helper utilities for building Maltego transforms that consume or produce data in STIX2 format.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/maltegotransforms/maltego-stix2',
author='ANSSI, Samuel Hassine, Maltego Technologies GmbH',
license='Apache License 2.0',
setup_requires=dependencies,
install_requires=dependencies,
packages=[
'maltego_stix2'
],
zip_safe=False
)