forked from singer-io/tap-sftp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·35 lines (34 loc) · 882 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
34
35
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-sftp",
version="1.0.2",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_sftp"],
install_requires=[
"singer-python==5.9.0",
'paramiko==2.6.0',
'backoff==1.8.0',
'singer-encodings @ git+https://github.com/INGCRENGIFO/singer-encodings.git#egg=singer-encodings',
'terminaltables==3.1.0',
],
extras_require={
'dev': [
'ipdb',
'pylint',
'nose'
]
},
entry_points="""
[console_scripts]
tap-sftp=tap_sftp:main
""",
packages=["tap_sftp"],
package_data = {
"schemas": ["tap_sftp/schemas/*.json"]
},
include_package_data=True,
)