django-modeltranslation/setup.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

8 lines
242 B
Python
Executable file

#!/usr/bin/env python
import pkg_resources
from setuptools import setup
# (1) check required versions (from https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c108)
pkg_resources.require("setuptools>=39.2")
setup()