version.py 242 B

12345678910
  1. """
  2. This module exists only to simplify retrieving the version number of chardet
  3. from within setup.py and from chardet subpackages.
  4. :author: Dan Blanchard (dan.blanchard@gmail.com)
  5. """
  6. __version__ = "3.0.4"
  7. VERSION = __version__.split('.')