forked from lambtron/tap-iterable
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (31 loc) · 786 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (31 loc) · 786 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-iterable",
version="1.0.2",
description="Singer.io tap for extracting Iterable data",
author="Stitch",
url="http://github.com/singer-io/tap-iterable",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_iterable"],
install_requires=[
"singer-python==5.13.2",
"requests==2.32.4"
],
extras_require={
'dev': [
'pylint',
'ipdb',
'requests==2.32.4'
]
},
entry_points="""
[console_scripts]
tap-iterable=tap_iterable:main
""",
packages=["tap_iterable"],
package_data = {
"schemas": ["tap_iterable/schemas/*.json"]
},
include_package_data=True,
)