aboutsummaryrefslogblamecommitdiffhomepage
path: root/setup.py
blob: 80c2c108343d96add6cc94e09113bf2e2b9321ce (plain) (tree)
1
2
3
4
5
6




                                           
                      






                                                                                    
                                










                                                  
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(name='tap-google-sheets',
      version='0.0.3',
      description='Singer.io tap for extracting data from the Google Sheets v4 API',
      author='jeff.huth@bytecode.io',
      classifiers=['Programming Language :: Python :: 3 :: Only'],
      py_modules=['tap_google_sheets'],
      install_requires=[
          'backoff==1.8.0',
          'requests==2.22.0',
          'singer-python==5.9.0'
      ],
      entry_points='''
          [console_scripts]
          tap-google-sheets=tap_google_sheets:main
      ''',
      packages=find_packages(),
      package_data={
          'tap_google_sheets': [
              'schemas/*.json'
          ]
      })