10 lines
242 B
Python
Raw Normal View History

2021-01-20 16:03:44 -06:00
"""
This module exists only to simplify retrieving the version number of chardet
from within setup.py and from chardet subpackages.
:author: Dan Blanchard (dan.blanchard@gmail.com)
"""
2021-03-27 21:04:45 +00:00
__version__ = "4.0.0"
2021-01-20 16:03:44 -06:00
VERSION = __version__.split('.')