forked from robert-krasevec/tap-hubspot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (44 loc) · 1.22 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
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-hubspot',
version='2.9.2',
description='Singer.io tap for extracting data from the HubSpot API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_hubspot'],
install_requires=[
'attrs==16.3.0',
'singer-python==5.12.2',
'requests==2.26.0',
'backoff==1.8.0',
'requests_mock==1.9.3',
],
extras_require= {
'dev': [
'pylint==2.5.3',
'nose==1.3.7',
]
},
entry_points='''
[console_scripts]
tap-hubspot=tap_hubspot:main
''',
packages=['tap_hubspot'],
package_data = {
'tap_hubspot/schemas': [
"campaigns.json",
"companies.json",
"contact_lists.json",
"contacts.json",
"deals.json",
"email_events.json",
"forms.json",
"keywords.json",
"owners.json",
"subscription_changes.json",
"workflows.json",
],
},
include_package_data=True,
)