-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 834 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 834 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
26
27
28
29
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-google-cloud-storage',
version='0.0.1',
description='Singer tap for extracting files from Google Cloud Storage',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
install_requires=[
'backoff==2.2.1',
'urllib3==2.6.3',
'singer-encodings==0.5.0',
'singer-python==6.8.0',
'google-cloud-storage==3.10.1',
'gcsfs==2026.3.0',
'voluptuous==0.16.0'
],
extras_require={
'dev': [
'ipdb'
]
},
entry_points='''
[console_scripts]
tap-google-cloud-storage=tap_google_cloud_storage:main
''',
packages=['tap_google_cloud_storage'])