diff options
author | cosimon <cosimon@users.noreply.github.com> | 2020-04-17 09:09:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 09:09:41 -0400 |
commit | f6d7c509f00feb63810df7a9216fe1769195197a (patch) | |
tree | 0727c5ccc646e49177db4dec43b58df4c02aa2c2 /setup.py | |
parent | f012a137927591d5d9068d5d499d424ea4112ea9 (diff) | |
download | tap-google-sheets-f6d7c509f00feb63810df7a9216fe1769195197a.tar.gz tap-google-sheets-f6d7c509f00feb63810df7a9216fe1769195197a.tar.zst tap-google-sheets-f6d7c509f00feb63810df7a9216fe1769195197a.zip |
Skip malformed sheets (#13)
* Skip malformed sheets
* Move the try except block up a level for readability sake
* Remove debug code
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -13,6 +13,13 @@ setup(name='tap-google-sheets', | |||
13 | 'requests==2.22.0', | 13 | 'requests==2.22.0', |
14 | 'singer-python==5.9.0' | 14 | 'singer-python==5.9.0' |
15 | ], | 15 | ], |
16 | extras_require={ | ||
17 | 'dev': [ | ||
18 | 'ipdb==0.11', | ||
19 | 'pylint', | ||
20 | 'nose' | ||
21 | ] | ||
22 | }, | ||
16 | entry_points=''' | 23 | entry_points=''' |
17 | [console_scripts] | 24 | [console_scripts] |
18 | tap-google-sheets=tap_google_sheets:main | 25 | tap-google-sheets=tap_google_sheets:main |