-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
39 lines (34 loc) · 1.07 KB
/
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
33
34
35
36
37
38
39
#!/usr/bin/env python
from setuptools import find_packages, setup
def get_version():
version = {}
with open('tap_quickbooks_report/version.py') as fp:
exec(fp.read(), version)
return version['__version__']
with open('README.md', 'r') as f:
readme = f.read()
setup(name='tap-quickbooks',
version='1.4.54',
description='Singer.io tap for extracting data from the Quickbooks API',
author='hotglue',
url='http://hotglue.xyz/',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_quickbooks'],
install_requires=[
'requests>=2.20.0',
'singer-python==5.3.1',
'xmltodict==0.11.0',
'jsonpath-ng==1.4.3',
'pytz==2018.4',
'attrs==20.2.0'
],
entry_points='''
[console_scripts]
tap-quickbooks=tap_quickbooks:main
''',
packages=find_packages(exclude=['tests']),
package_data={
'tap_quickbooks.quickbooks': ['schemas/*.json', 'reportstreams/*']
},
include_package_data=True,
)