# -*- coding: utf8 -*- """ Burp-UI is a web-ui for burp backup written in python with Flask and jQuery/Bootstrap .. module:: burpui.desc :platform: Unix :synopsis: Burp-UI desc module. .. moduleauthor:: Ziirish """ import os __title__ = 'burp-ui' __author__ = 'Benjamin SANS (Ziirish)' __author_email__ = 'hi+burpui@ziirish.me' __url__ = 'https://git.ziirish.me/ziirish/burp-ui' __doc__ = 'https://burp-ui.readthedocs.io/en/latest/' __description__ = ('Burp-UI is a web-ui for burp backup written in python with ' 'Flask and jQuery/Bootstrap') __license__ = 'BSD 3-clause' __version__ = open( os.path.join(os.path.dirname(os.path.realpath(__file__)), 'VERSION') ).read().rstrip() try: # pragma: no cover __release__ = open( os.path.join(os.path.dirname(os.path.realpath(__file__)), 'RELEASE') ).read().rstrip() except: # pragma: no cover __release__ = 'unknown'