fix: [setup] use version from util package

so we only have one place with a version number
pull/40/head
Christophe Vandeplas 2019-10-25 06:54:00 +02:00
parent 0a08e5101b
commit 83fdde0580
2 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
from src.transform.common.util import __version__
setup(
name='MISP_maltego',
author='Christophe Vandeplas',
version='1.3.6',
version=__version__,
author_email='christophe@vandeplas.com',
maintainer='Christophe Vandeplas',
url='https://github.com/MISP/MISP-maltego',

View File

@ -12,7 +12,7 @@ import time
# FIXME from galaxy 'to MISP Event' is confusing
__version__ = '1.3.4'
__version__ = '1.3.7'
mapping_misp_to_maltego = {
'AS': [AS],