mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 06:05:58 -06:00
36 lines
964 B
Python
36 lines
964 B
Python
# -*- 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 <hi+burpui@ziirish.me>
|
|
"""
|
|
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"
|