-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
38 lines (36 loc) · 968 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
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-quickbooks',
version='2.2.0',
description='Singer.io tap for extracting data from the Quickbooks API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_quickbooks'],
install_requires=[
'singer-python==5.13.0',
'requests==2.23.0',
'requests_oauthlib==1.3.0',
],
extras_require={
'test': [
'pylint==2.5.3',
'nose'
],
'dev': [
'ipdb'
]
},
entry_points='''
[console_scripts]
tap-quickbooks=tap_quickbooks:main
''',
packages=['tap_quickbooks'],
package_data = {
"tap_quickbooks": [
"schemas/*.json",
"schemas/shared/*.json"
]
},
include_package_data=True,
)