-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 869 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 869 Bytes
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
from setuptools import setup, find_packages
setup(name="tap-sparkpost",
version="0.0.1",
description="Singer.io tap for extracting data from sparkpost API",
author="Generated by Connector Intelligence",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
install_requires=[
"singer-python==6.1.1",
"requests==2.32.4",
"backoff==2.2.1",
"parameterized==0.9.0"
],
extras_require={
"dev": [
"pytest",
"coverage",
"pylint",
],
},
entry_points="""
[console_scripts]
tap-sparkpost=tap_sparkpost:main
""",
packages=find_packages(),
package_data = {
"tap_sparkpost": ["schemas/*.json", "schemas/shared/*.json"],
},
include_package_data=True,
)