forked from hotgluexyz/tap-netsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 905 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='tap-netsuite',
version='1.5.14',
description='Singer.io tap for extracting data from the NetSuite SOAP',
author='hotglue',
url='https://hotglue.xyz/',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_netsuite'],
install_requires=[
'netsuitesdk @ git+https://github.com/hotgluexyz/[email protected]#egg=netsuitesdk',
'requests==2.21.0',
'singer-python==5.3.1',
'xmltodict==0.11.0',
'jsonpath-ng==1.4.3',
'jsonschema==2.6.0',
'pytz==2018.4'
],
entry_points='''
[console_scripts]
tap-netsuite=tap_netsuite:main
''',
packages=find_packages(exclude=['tests']),
package_data={
'tap_netsuite.netsuite': ['schemas/*.json']
},
include_package_data=True,
)