forked from singer-io/tap-recurly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 848 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-recurly',
version='1.0.0',
description='Singer.io tap for extracting data from the Recurly API',
author='Stitch',
url='http://github.com/singer-io/tap-recurly',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_recurly'],
install_requires=[
'singer-python==5.1.5',
'requests==2.20.0',
'backoff==1.3.2'
],
extras_require={
'dev': [
'ipdb==0.13.7',
'pylint==2.7.2',
]
},
entry_points='''
[console_scripts]
tap-recurly=tap_recurly:main
''',
packages=['tap_recurly'],
package_data = {
"schemas": ["tap_recurly/schemas/*.json"]
},
include_package_data=True,
)