Fixed UTF-8 issues
diff --git a/setup.py b/setup.py
index f704dd1..36c1528 100755
--- a/setup.py
+++ b/setup.py
@@ -1,20 +1,19 @@
 #!/usr/bin/env python
-# -*- coding: utf-8 -*-
 
 from setuptools import setup
 
 setup(name='rsa',
 	version='1.1',
     description='Pure-Python RSA implementation', 
-    author=u'Sybren Stüvel'.encode('utf-8'), 
+    author='Sybren Stuvel',
     author_email='sybren@stuvel.eu', 
-    maintainer=u'Sybren Stüvel'.encode('utf-8'),
+    maintainer='Sybren Stuvel',
     maintainer_email='sybren@stuvel.eu',
 	url='http://www.stuvel.eu/rsa',
 	packages=['rsa'],
     license='GPL',
     classifiers=[
-        'Development Status :: 5 - Beta',
+        'Development Status :: 4 - Beta',
         'Intended Audience :: End Users/Desktop',
         'License :: OSI Approved :: GNU General Public License (GPL)',
         'Operating System :: OS Independent',