-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (32 loc) · 817 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (32 loc) · 817 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
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-closeio',
version='1.6.5',
description='Singer.io tap for extracting data from the CloseIO API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_closeio'],
install_requires=[
'singer-python==5.13.2',
'pendulum==1.2.0',
'requests==2.32.4',
],
extras_require={
"test": [
"pylint"
],
"dev": [
"ipdb==0.11"
]
},
entry_points='''
[console_scripts]
tap-closeio=tap_closeio:main
''',
packages=['tap_closeio'],
package_data = {
'schemas': ['tap_closeio/schemas/*.json']
},
include_package_data=True,
)