forked from singer-io/tap-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 791 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (31 loc) · 791 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
32
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-dz-dynamodb",
version="1.2.1",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_dz_dynamodb"],
install_requires=[
'boto3==1.14.9',
"singer-python==5.9.0",
'terminaltables==3.1.0',
'backoff==1.8.0',
],
extras_require={
'dev': [
'ipdb',
'pylint',
'nose'
]
},
entry_points="""
[console_scripts]
tap-dz-dynamodb=tap_dz_dynamodb:main
""",
packages=["tap_dz_dynamodb", 'tap_dz_dynamodb.sync_strategies'],
package_data = {},
include_package_data=True,
)