forked from MeltanoLabs/tap-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.01 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-salesforce',
version='1.5.1',
description='Singer.io tap for extracting data from the Salesforce API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_salesforce'],
install_requires=[
'requests==2.32.2',
'singer-python~=5.13',
'xmltodict==0.11.0',
'simple-salesforce<1.0', # v1.0 requires `requests==2.22.0`
# fix version conflicts, see https://gitlab.com/meltano/meltano/issues/193
'idna==2.7',
'cryptography',
'pyOpenSSL',
],
entry_points='''
[console_scripts]
tap-salesforce=tap_salesforce:main
''',
packages=['tap_salesforce', 'tap_salesforce.salesforce'],
package_data = {
'tap_salesforce/schemas': [
# add schema.json filenames here
]
},
include_package_data=True,
)