945066c
diff --git a/PKG-INFO b/PKG-INFO
945066c
index 31c4ad2..bebcb80 100644
945066c
--- PKG-INFO
945066c
+++ PKG-INFO
945066c
@@ -18,7 +18,10 @@ Classifier: License :: OSI Approved :: MIT License
945066c
 Classifier: License :: OSI Approved :: Python Software Foundation License
945066c
 Classifier: Operating System :: OS Independent
945066c
 Classifier: Programming Language :: Python
945066c
-Classifier: Programming Language :: Python :: 2.4
945066c
-Classifier: Programming Language :: Python :: 2.5
945066c
+Classifier: Programming Language :: Python :: 2
945066c
 Classifier: Programming Language :: Python :: 2.6
945066c
+Classifier: Programming Language :: Python :: 2.7
945066c
+Classifier: Programming Language :: Python :: 3
945066c
+Classifier: Programming Language :: Python :: 3.3
945066c
+Classifier: Programming Language :: Python :: 3.4
945066c
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
945066c
diff --git a/setup.py b/setup.py
945066c
index 736cfa1..e2f8de0 100644
945066c
--- setup.py
945066c
+++ setup.py
945066c
@@ -1,6 +1,6 @@
945066c
 #!/usr/bin/env python
945066c
 
945066c
-from distutils.core import setup
945066c
+from setuptools import setup
945066c
 
945066c
 VERSION = '0.4'
945066c
 
945066c
@@ -24,12 +24,16 @@ use.''',
945066c
         'License :: OSI Approved :: Python Software Foundation License',
945066c
         'Operating System :: OS Independent',
945066c
         'Programming Language :: Python',
945066c
-        'Programming Language :: Python :: 2.4',
945066c
-        'Programming Language :: Python :: 2.5',
945066c
+        'Programming Language :: Python :: 2'
945066c
         'Programming Language :: Python :: 2.6',
945066c
+        'Programming Language :: Python :: 2.7',
945066c
+        'Programming Language :: Python :: 3',
945066c
+        'Programming Language :: Python :: 3.3',
945066c
+        'Programming Language :: Python :: 3.4'
945066c
         'Topic :: Software Development :: Libraries :: Python Modules',
945066c
       ],
945066c
       packages = ['iniparse'],
945066c
+      install_requires=['six'],
945066c
       data_files = [
945066c
         ('share/doc/iniparse-%s' % VERSION, ['README', 'LICENSE-PSF',
945066c
                                              'LICENSE', 'Changelog',