Skip to content

Commit

Permalink
setup.py fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gord-nuttall-adswerve committed Apr 13, 2023
1 parent 7750da1 commit af7386f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(name='tap-exchangeratesapi',
version='1.0.1',
description='Singer.io tap for extracting currency exchange rate data from the exchangeratesapi.io API by Adswerve',
author='Adswerve',
description='Singer.io tap for extracting currency exchange rate data from the exchangeratesapi.io API',
author='Stitch',
url='http://github.com/adswerve/tap-exchangeratesapi',
download_url='https://github.com/adswerve/tap-exchangeratesapi/archive/refs/tags/1.0.1.zip',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_exchangeratesapi'],
install_requires=['singer-python==5.13.0',
'backoff==1.8.0',
'requests==2.28.2'],
extras_require={
'dev': [
'ipdb==0.11'
]
},
entry_points='''
[console_scripts]
tap-exchangeratesapi=tap_exchangeratesapi:main
'''
''',
packages=['tap_exchangeratesapi'],
include_package_data=True
)

0 comments on commit af7386f

Please sign in to comment.