1 | |
---|
2 | |
---|
3 | ########### SVN repository information ################### |
---|
4 | # $Date: 2013-08-07 21:42:32 +0000 (Wed, 07 Aug 2013) $ |
---|
5 | # $Author: jemian $ |
---|
6 | # $Revision: 1425 $ |
---|
7 | # $URL: bcdaqwidgets/trunk/src/bcdaqwidgets/__init__.py $ |
---|
8 | # $Id: __init__.py 1425 2013-08-07 21:42:32Z jemian $ |
---|
9 | ########### SVN repository information ################### |
---|
10 | |
---|
11 | import datetime |
---|
12 | import bcdaqwidgets |
---|
13 | |
---|
14 | |
---|
15 | StyleSheet = bcdaqwidgets.StyleSheet |
---|
16 | BcdaQSignalDef = bcdaqwidgets.BcdaQSignalDef |
---|
17 | BcdaQLabel = bcdaqwidgets.BcdaQLabel |
---|
18 | BcdaQLineEdit = bcdaqwidgets.BcdaQLineEdit |
---|
19 | BcdaQPushButton = bcdaqwidgets.BcdaQPushButton |
---|
20 | BcdaQMomentaryButton = bcdaqwidgets.BcdaQMomentaryButton |
---|
21 | BcdaQToggleButton = bcdaqwidgets.BcdaQToggleButton |
---|
22 | |
---|
23 | |
---|
24 | __project__ = u'BcdaQWidgets' |
---|
25 | __description__ = u"PyEpics-aware PySide widgets for the APS." |
---|
26 | __copyright__ = u'2013, Argonne National Laboratory' |
---|
27 | __authors__ = [u'Pete Jemian', u'Cayla Suarez'] |
---|
28 | __institution__ = u"Advanced Photon Source, Argonne National Laboratory" |
---|
29 | __author_email__= u"jemian@anl.gov" |
---|
30 | __url__ = u"will be but not yet: http://subversion.xray.aps.anl.gov/admin_bcdaext/BcdaQWidgets" |
---|
31 | __license__ = u"(c) 2009-2013, UChicago Argonne, LLC" |
---|
32 | __license__ += u" (see LICENSE file for details)" |
---|
33 | |
---|
34 | __long_description__ = __description__ |
---|
35 | |
---|
36 | __yyyymmdd__ = str(datetime.datetime.now()).split()[0] |
---|
37 | __version__ = u"0.1" |
---|
38 | __minor_version__ = u"" |
---|
39 | __svnid__ = u"$Id: __init__.py 1425 2013-08-07 21:42:32Z jemian $" |
---|
40 | __revision__ = __svnid__.split(" ")[2] |
---|
41 | #__full_version__ = u"%s.%s-r%s" % (__version__, __minor_version__, __revision__) |
---|
42 | __full_version__ = u"v%s.%s, %s" % (__version__, __minor_version__, __yyyymmdd__) |
---|
43 | __all__ = ['bcdaqwidgets', ] |
---|