-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
30 lines (26 loc) · 798 Bytes
/
__init__.py
File metadata and controls
30 lines (26 loc) · 798 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/env python
# -*- encoding: utf-8 -*-
# ./__init__.py
#
# (c) 2010-2012 Konstantin Sering, Nora Umbach, Dominik Wabersich
# <colorlab[at]psycho.uni-tuebingen.de>
#
# GPL 3.0+ or (cc) by-sa (http://creativecommons.org/licenses/by-sa/3.0/)
#
# content: Init File
#
# input: --
# output: --
#
# created 2010
# last mod 2012-05-29 12:39 DW
"""
achrolab provides classes and functions to handle a color laboratory.
"""
# define what should be imported by: from achrolab import *
#__all__ = ["monitor", "tubes", "eyeone", "wasco"]
__version__ = '0.1'
#__revision__ = '$Revision: 7397 $'
#__date__ = '$Date: 2010-08-27 07:02:33 -0500 (Thu, 06 Aug 2009) $'
# license string ... is this right? TODO
__license__ = "GPL 3.0+ or (cc) by-sa (http://creativecommons.org/licenses/by-sa/3.0/)"