forked from RFAInc/tap-spreadsheets-anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (30 loc) · 958 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·31 lines (30 loc) · 958 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
31
#!/usr/bin/env python
from setuptools import setup, find_packages
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',
'xlrd==1.2.0',
'tqdm==4.57.0'
],
entry_points="""
[console_scripts]
tap-spreadsheets-anywhere=tap_spreadsheets_anywhere:main
""",
packages=find_packages(),
package_data={
'tap_spreadsheets_anywhere': [
'files/xlsx/*.xlsm', 'files/xlsx/*.xls', 'files/xlsx/*.xlsx', 'files/csv/*.csv'
]
}
)