from setuptools import setup setup( name='spark-testing-base', version='0.10.0', author='Holden Karau', author_email='holden@pigscanfly.ca', packages=['sparktestingbase', 'sparktestingbase.test'], url='https://github.com/holdenk/spark-testing-base', license='LICENSE.txt', description='Spark testing for python', long_description='', install_requires=[ 'unittest2', 'findspark', 'pytest' ], test_requires=[ 'nose', 'coverage', 'unittest2' ], )