Skip to content

Commit 0eace9d

Browse files
committed
revert setup
1 parent 23cf2e3 commit 0eace9d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
from setuptools import find_packages, setup
44

55
def get_version():
6-
return '1.4.54'
6+
version = {}
7+
with open('tap_quickbooks_report/version.py') as fp:
8+
exec(fp.read(), version)
9+
return version['__version__']
710

811

912
with open('README.md', 'r') as f:
1013
readme = f.read()
1114

1215
setup(name='tap-quickbooks',
13-
version=get_version(),
16+
version='1.4.54',
1417
description='Singer.io tap for extracting data from the Quickbooks API',
1518
author='hotglue',
1619
url='http://hotglue.xyz/',

0 commit comments

Comments
 (0)