'''The setup and build script for the library.'''
 
 from setuptools import setup, find_packages
-import deefuzzer
 
 CLASSIFIERS = ['Programming Language :: Python',
                 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
   long_description = open('README.rst').read(),
   author = "Guillaume Pellerin",
   author_email = "yomguy@parisson.com",
-  version = deefuzzer.__version__,
+  version = '0.6.4',
   install_requires = [
         'setuptools',
         'tinyurl',
   include_package_data = True,
   zip_safe = False,
 )
+