source: moxy/trunk/src/moxy/version.py @ 635

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

fix the imports, add some TODO items - more to come

  • 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 moxy
17
18########### SVN repository information ###################
19# $Date: 2011-09-09 17:29:58 +0000 (Fri, 09 Sep 2011) $
20# $Author: jemian $
21# $Revision: 635 $
22# $URL: moxy/trunk/src/moxy/version.py $
23# $Id: version.py 635 2011-09-09 17:29:58Z 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__ = '''moxy is an EPICS GUI tool to assist users in routine operation of positioning devices''' 
43__main_script__ = "moxy.py"
44__summary__ = "moxy: a GUI tool for EPICS"
45__target_name__ = "moxy"
46__url__ = "https://subversion.xor.aps.anl.gov/trac/bcdaext/wiki/moxy"
47__urlsvn__ = "https://subversion.xor.aps.anl.gov/bcdaext/moxy"
48__svndesc__ = 'moxy SVN repo page'
49__documentation__ = '''
50    *moxy* (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.