debian-python-django-jsonfield/jsonfield/__init__.py

9 lines
173 B
Python

import os
from .fields import JSONField
__all__ = ('JSONField',)
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as fp:
__version__ = fp.read().strip()