django-modeltranslation/modeltranslation/__init__.py
Serhii Tereshchenko 6b4bb733d9
fix: Store version as plain text file to simplify bumping (#636)
BREAKING CHANGE: Replaced `VERSION` in tuple format by `__version__` as a string
2022-05-14 11:11:07 +03:00

5 lines
167 B
Python

from pathlib import Path
__version__ = (Path(__file__).parent / "VERSION").open().read().strip()
default_app_config = 'modeltranslation.apps.ModeltranslationConfig'