forked from ets/tap-spreadsheets-anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (32 loc) · 942 Bytes
/
setup.py
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
31
32
33
#!/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",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_spreadsheets_anywhere"],
install_requires=[
"singer-python>=5.0.12",
'smart_open>=2.1',
'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'
],
entry_points="""
[console_scripts]
tap-spreadsheets-anywhere=tap_spreadsheets_anywhere:main
""",
packages=["tap_spreadsheets_anywhere"],
include_package_data=True,
tests_require=[
'pytest'
]
)