File: __init__.py

package info (click to toggle)
pygrace 0.4p2-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 184 kB
  • ctags: 152
  • sloc: python: 1,134; makefile: 15
file content (18 lines) | stat: -rw-r--r-- 461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
# 
# Michael McKerns
# mmckerns@caltech.edu 
from pygrace import __doc__ as gracedoc
__doc__ = gracedoc

def grace():
    '''get usage: gr = grace(); gr.doc()'''
    from pygrace import grace as graceFactory
    return graceFactory()

def copyright():
    from pygrace import __license__
    return __license__
   #return "pygrace module: Copyright (c) 2005-2009 Michael McKerns"

#built with:  Grace-5.1.14, grace_np-2.7, gracePlot-0.5.1