File: __init__.py

package info (click to toggle)
python-django-jsonfield 0.9.12-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 160 kB
  • sloc: python: 476; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
import os
__version__ = open(os.path.join(os.path.dirname(__file__),'VERSION')).read().strip()

try:
    from .fields import JSONField
except ImportError:
    pass