source: wxmtxy/trunk/src/moxy/version.py @ 631

Last change on this file since 631 was 631, checked in by jemian, 12 years ago

begin refactoring into release structure and rebranding with new product name: moxy

  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Date Revision Author HeadURL Id
File size: 2.2 KB
Line 
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'''
16version 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
Note: See TracBrowser for help on using the repository browser.