This repository was archived by the owner on Feb 24, 2025. It is now read-only.
forked from Radico/tap-klaviyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.41 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-klaviyo-temporary',
version='0.0.1',
description='Singer.io tap for extracting data from the Klaviyo API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_klaviyo'],
install_requires=['singer-python==5.12.2',
'requests==2.13.0',
'backoff==1.8.0',
'ipdb'],
entry_points='''
[console_scripts]
tap-klaviyo-temporary=tap_klaviyo:main
''',
packages=['tap_klaviyo'],
package_data={
'tap_klaviyo/schemas': [
"bounce.json",
"click.json",
"mark_as_spam.json",
"open.json",
"receive.json",
"unsubscribe.json",
"dropped_email.json",
"global_exclusions.json",
"global_exclusions2.json",
"lists.json",
"lists2.json",
"list_members.json",
"list_members2.json",
"metrics2.json",
"subscribe_list.json",
"unsub_list.json",
"update_email_preferences.json",
"events.json",
"profiles.json"
]
},
include_package_data=True
)