forked from video-annotator/pythonvideoannotator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
executable file
·25 lines (21 loc) · 990 Bytes
/
Copy path__init__.py
File metadata and controls
executable file
·25 lines (21 loc) · 990 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
# !/usr/bin/python3
# -*- coding: utf-8 -*-
__version__ = "2.1.2"
__author__ = ["Ricardo Ribeiro", "Carlos Mao de Ferro", "Hugo Cachitas"]
__credits__ = ["Ricardo Ribeiro", "Carlos Mao de Ferro", "Hugo Cachitas"]
__license__ = "Attribution-NonCommercial-ShareAlike 4.0 International"
__maintainer__ = ["Ricardo Ribeiro", "Carlos Mao de Ferro"]
__email__ = ["ricardojvr at gmail.com", "cajomferro at gmail.com"]
__status__ = "Development"
from pysettings import conf; conf += 'pythonvideoannotator.settings'
####################################################
## Load the user settings in case the file exists ##
####################################################
try:
import user_settings
conf += user_settings
except:
pass
####################################################
####################################################
import logging, loggingbootstrap; loggingbootstrap.create_double_logger("pyforms", logging.DEBUG, 'pythonvideoannotator.log',logging.DEBUG)