-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (39 loc) · 1.28 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
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-sendgrid',
version='0.1.0',
description='Singer.io tap for extracting data from the SendGrid API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_sendgrid'],
install_requires=['singer-python==5.0.4',
'requests==2.13.0',
'pendulum==1.2.0',
],
entry_points='''
[console_scripts]
tap-sendgrid=tap_sendgrid:main
''',
packages=['tap_sendgrid'],
package_data={
'tap_sendgrid/schemas': [
"contacts.json",
"global_suppressions.json",
"groups_members.json",
"groups_all.json",
"invalids.json",
"lists_all.json",
"lists_members.json",
"segments_all.json",
"segments_members.json",
"templates_all.json",
"blocks.json",
"bounces.json",
"campaigns.json",
"spam_reports.json",
"global_suppressions_overwrite.json",
]
},
include_package_data=True
)