-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (29 loc) · 821 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (29 loc) · 821 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
30
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-spreadsheets-anywhere",
version="0.2.0",
description="Singer.io tap for extracting spreadsheet data from cloud storage",
author="Eric Simmerman",
url="https://github.com/ets/tap-spreadsheets-anywhere",
py_modules=["tap_spreadsheets_anywhere"],
install_requires=[
"singer-python>=5.0.12",
'smart_open>=7.2.0',
'voluptuous>=0.10.5',
'boto3>=1.15.5',
'google-cloud-storage>=2.7.0',
'protobuf>=4.21.12',
'openpyxl',
'xlrd',
'paramiko',
'azure-storage-blob>=12.14.0',
'jsonpath-ng>=1.5.3'
'pyarrow>=5.0.0'
],
packages=["tap_spreadsheets_anywhere"],
include_package_data=True,
tests_require=[
'pytest'
]
)