18 lines
517 B
Python
18 lines
517 B
Python
# Imports
|
|
from krita import *
|
|
from PyQt5 import *
|
|
from .timer_watch import *
|
|
|
|
# Information
|
|
__version__ = ' 1.0.0 '
|
|
__license__ = ' GPLv3+ LGPLv3+ '
|
|
__author__ = ' Ricardo Jeremias '
|
|
__email__ = ' jeremy6321478@gmail.com '
|
|
__url__ = ' https://github.com/EyeOdin '
|
|
|
|
# Name the Python Script for the program
|
|
DOCKER_ID = "pykrita_timer_watch"
|
|
|
|
# Register the docker so Krita can use it!
|
|
Application.addDockWidgetFactory( DockWidgetFactory(DOCKER_ID, DockWidgetFactoryBase.DockRight, TimerWatchDocker) )
|