blob: 887a920d9491057732c7fd2bfd6904a8829c4ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Module for working with QLC+ workspaces.
The workspace module contains the utilities for working with QLC+ workspaces.
The audio module contains some basic audio-players for use in running lighting.
The image module contains utilities for visualizing QLC+ functions.
The tk module contains Tk widgets that may be useful.
"""
__version__ = "0.0.1"
__author__ = "Ben Connors <ben.connors@uwo.ca>"
__all__ = ["workspace", "audio", "image", "tk"]
|