try: from setuptools import setup except ImportError: from distutils.core import setup setup( name='tableaudocumentapi', version='0.6', author='Tableau', author_email='github@tableau.com', url='https://github.com/tableau/document-api-python', packages=['tableaudocumentapi'], license='MIT', description='A Python module for working with Tableau files.', test_suite='test' )