forked from ets/tap-spreadsheets-anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (27 loc) · 832 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-spreadsheets-anywhere",
version="0.1.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>=1.31.2',
'openpyxl',
'xlrd',
'paramiko'
],
entry_points="""
[console_scripts]
tap-spreadsheets-anywhere=tap_spreadsheets_anywhere:main
""",
packages=["tap_spreadsheets_anywhere"],
include_package_data=True,
)