File: __init__.py

package info (click to toggle)
ginga 5.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,276 kB
  • sloc: python: 94,998; javascript: 410; makefile: 146
file content (9 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
# Licensed under a 3-clause BSD style license - see LICENSE.txt
"""See LONG_DESC.txt"""

try:
    from .version import version as __version__
except ImportError:
    __version__ = ''

# END