forked from singer-io/tap-exchangeratesapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 835 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-exchangeratesapi',
version='0.1.1',
description='Singer.io tap for extracting currency exchange rate data from the exchangeratesapi.io API',
author='Stitch',
url='http://github.com/singer-io/tap-exchangeratesapi',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_exchangeratesapi'],
install_requires=['singer-python==5.3.3',
'backoff==1.3.2',
'requests==2.21.0'],
extras_require={
'dev': [
'ipdb==0.11'
]
},
entry_points='''
[console_scripts]
tap-exchangeratesapi=tap_exchangeratesapi:main
''',
packages=['tap_exchangeratesapi'],
include_package_data=True
)