]> git.immae.eu Git - github/fretlink/tap-google-sheets.git/blob - setup.py
pylint and testing
[github/fretlink/tap-google-sheets.git] / setup.py
1 #!/usr/bin/env python
2
3 from setuptools import setup, find_packages
4
5 setup(name='tap-google-sheets',
6 version='0.0.1',
7 description='Singer.io tap for extracting data from the Google Sheets v4 API',
8 author='jeff.huth@bytecode.io',
9 classifiers=['Programming Language :: Python :: 3 :: Only'],
10 py_modules=['tap_google_sheets'],
11 install_requires=[
12 'backoff==1.8.0',
13 'requests==2.22.0',
14 'singer-python==5.8.1'
15 ],
16 entry_points='''
17 [console_scripts]
18 tap-google-sheets=tap_google_sheets:main
19 ''',
20 packages=find_packages(),
21 package_data={
22 'tap_google_sheets': [
23 'schemas/*.json'
24 ]
25 })