from setuptools import setup, find_packages import sys, os version = '0.0' setup(name='srtestharness', version=version, description="", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='', author_email='', url='', license='', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, install_requires=[ # -*- Extra requirements: -*- 'autobahntestsuite', 'autobahn==0.10.1', 'cryptography>=0.7' ], entry_points=""" # -*- Entry points: -*- [console_scripts] sr-testharness = srtestharness.runner:main """, )