1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | # full contents of __file_license__ appear at the top of each file |
---|
4 | __file_license__ = ''' |
---|
5 | #************************************************************************* |
---|
6 | # Copyright (c) 2009-2010 The University of Chicago, as Operator of Argonne |
---|
7 | # National Laboratory. |
---|
8 | # Copyright (c) 2009-2010 The Regents of the University of California, as |
---|
9 | # Operator of Los Alamos National Laboratory. |
---|
10 | # This file is distributed subject to a Software License Agreement found |
---|
11 | # in the file LICENSE that is included with this distribution. |
---|
12 | #************************************************************************* |
---|
13 | ''' |
---|
14 | |
---|
15 | ''' |
---|
16 | version information for wxmtxy |
---|
17 | |
---|
18 | ########### SVN repository information ################### |
---|
19 | # $Date: 2011-09-09 17:12:01 +0000 (Fri, 09 Sep 2011) $ |
---|
20 | # $Author: jemian $ |
---|
21 | # $Revision: 631 $ |
---|
22 | # $URL: wxmtxy/trunk/src/moxy/version.py $ |
---|
23 | # $Id: version.py 631 2011-09-09 17:12:01Z jemian $ |
---|
24 | ########### SVN repository information ################### |
---|
25 | ''' |
---|
26 | |
---|
27 | |
---|
28 | __author__ = "Pete R. Jemian" |
---|
29 | __author_email__ = "jemian@anl.gov" |
---|
30 | __contributor_credits__ = [ |
---|
31 | "", |
---|
32 | "other contributors:", |
---|
33 | "Geoff Savage/FNAL and John Hammonds/APS for CaChannel", |
---|
34 | "Tim Mooney/APS for ca_util"] |
---|
35 | __company_name__ = "Advanced Photon Source" |
---|
36 | __version__ = "0.5" |
---|
37 | __copyright__ = "(c) 2009, 2010" |
---|
38 | #fp = open('LICENSE', 'r') |
---|
39 | #__license__ = fp.read() |
---|
40 | #fp.close() |
---|
41 | __license__ = "APS extensions license. See LICENSE file for details" |
---|
42 | __long_description__ = '''wxmtxy is an EPICS GUI tool to assist users in routine operation of positioning devices''' |
---|
43 | __main_script__ = "wxmtxy.py" |
---|
44 | __summary__ = "wxmtxy: a GUI tool for EPICS" |
---|
45 | __target_name__ = "wxmtxy" |
---|
46 | __url__ = "https://subversion.xor.aps.anl.gov/trac/bcdaext/wiki/wxmtxy" |
---|
47 | __urlsvn__ = "https://subversion.xor.aps.anl.gov/bcdaext/wxmtxy" |
---|
48 | __svndesc__ = 'wxmtxy SVN repo page' |
---|
49 | __documentation__ = ''' |
---|
50 | *wxmtxy* (an EPICS GUI tool) provides support for an X,Y positioner |
---|
51 | (motor) pair by allowing users to define a table of known positions |
---|
52 | and providing a one-button click to drive a chosen X,Y pair to a specific |
---|
53 | table setting. Also can record current position into a setting. |
---|
54 | |
---|
55 | Several sets of X,Y positioners can be configured. (Each set is |
---|
56 | separate.) In fact, the positioners do not have to be motors, |
---|
57 | but can be any type of EPICS PV that will accept a numeric value. |
---|
58 | ''' |
---|
59 | |
---|