Skip to content

Commit

Permalink
Merge pull request #8 from mariahjrogers/master
Browse files Browse the repository at this point in the history
Compatibility with Python 3.8+
  • Loading branch information
gwenwindflower authored May 2, 2023
2 parents 1345d49 + 44e619b commit 10bb54c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
import os.path

setup(name='tap-framework',
version='0.1.2',
version='0.2.0',
description='Framework for building Singer.io taps',
author='Fishtown Analytics',
url='http://fishtownanalytics.com',
author='dbt Labs',
url='https://getdbt.com',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_framework'],
install_requires=[
'singer-python>=5.1.0,<5.5.0',
'backoff==1.3.2',
'requests==2.18.4',
'requests-oauthlib==0.8.0',
'funcy==1.10.1',
'singer-python>=5.1.0,<5.14',
'backoff>=1.3.2,<=1.8.0',
'requests>=2.18.4,<2.29',
'requests-oauthlib>=0.8.0,<1.4',
'funcy>=1.10.1,<1.19',
],
packages=['tap_framework'])

0 comments on commit 10bb54c

Please sign in to comment.