summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorBen Connors <benconnors@outlook.com>2019-01-22 15:36:34 -0500
committerBen Connors <benconnors@outlook.com>2019-01-22 15:36:34 -0500
commitca498eba3d9eaa2c25e281f9f8e6b5c3c8646ba6 (patch)
tree3a39e50e4e605bb2f55a4f9a606a9f0b6003f7f6 /__init__.py
Initial commit
- Finish and test workspace.Show rendering - Add some basic image visualization - Add some utility classes (audio, Tk)
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/__init__.py b/__init__.py
new file mode 100644
index 0000000..887a920
--- /dev/null
+++ b/__init__.py
@@ -0,0 +1,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"]