from setuptools import setup, find_packages import sys, os version = '0.0' 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: -*- """, )