Index: setup.py
===================================================================
--- setup.py	(revision 0)
+++ setup.py	(revision 1)
@@ -1,26 +1,31 @@
-from setuptools import setup, find_packages
-import sys, os
+import os
+import setuptools
+from distutils.core import setup
 
-version = '0.0'
+version = '0.1'
 
-setup(name='pyenvjasmine',
-      version=version,
-      description="A Python wrapper for envjasmine",
-      long_description="""\
-""",
-      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
-      keywords='',
-      author='Sascha Welter',
-      author_email='',
-      url='',
-      license='ZPL',
-      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
-      include_package_data=True,
-      zip_safe=False,
-      install_requires=[
-          # -*- Extra requirements: -*-
-      ],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
-      )
+setup(
+    name='pyenvjasmine',
+    version=version,
+    description="A Python wrapper for envjasmine",
+    long_description=open('README.rst').read(),
+    author='Sascha Welter',
+    author_email='',
+    url='https://bitbucket.org/codigo23/pyenvjasmine',
+    download_url='http://pypi.python.org/pypi/pyenvjasmine#downloads',
+    license='Zope Public License, see LICENSE',
+    install_requires=[],
+    classifiers=[
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Console',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: JavaScript',
+        'Topic :: Software Development',
+        'Topic :: Software Development :: Testing',
+        ]
+)
