1""" 2This module exists only to simplify retrieving the version number of chardet 3from within setup.py and from chardet subpackages. 4 5:author: Dan Blanchard ([email protected]) 6""" 7 8__version__ = "3.0.4" 9VERSION = __version__.split('.') 10 11