forked from video-annotator/pythonvideoannotator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
30 lines (22 loc) · 655 Bytes
/
Copy pathsettings.py
File metadata and controls
30 lines (22 loc) · 655 Bytes
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
# !/usr/bin/python3
# -*- coding: utf-8 -*-
""" pyControlGUI
"""
import logging
__author__ = "Ricardo Ribeiro"
__copyright__ = "Copyright 2016 Champalimaud Foundation"
__credits__ = "Ricardo Ribeiro"
__license__ = "MIT"
__maintainer__ = ["Ricardo Ribeiro", "Carlos Mão de Ferro"]
__email__ = ["ricardojvr at gmail.com", "cajomferro at gmail.com"]
__status__ = "Development"
LOG_FILENAME = "pythonvideoannotator"
APP_NAME = "pythonvideoannotator"
APP_LOG_HANDLER_FILE_LEVEL = logging.DEBUG
APP_LOG_HANDLER_CONSOLE_LEVEL = logging.INFO
WINDOW_SIZE = [50, 50, 800, 600]
LOAD_PROJECT_ON_STARTUP = False
try:
from myconf import *
except:
pass