forked from singer-io/tap-google-sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 716 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
from setuptools import setup
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
setup(name='tap-google-sheets',
version='1.1.1',
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=requirements,
entry_points='''
[console_scripts]
tap-google-sheets=tap_google_sheets:main
''',
packages=["tap_google_sheets"],
package_data={
'tap_google_sheets': [
'schemas/*.json'
]
})