forked from singer-io/tap-pipedrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 817 Bytes
/
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
from setuptools import setup
setup(name="tap-pipedrive",
version="1.2.2",
description="Singer.io tap for extracting data from the Pipedrive API",
author="Stitch",
author_email="dev@stitchdata.com",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_pipedrive"],
install_requires=[
"pendulum==2.1.2",
"requests==2.21.0",
"singer-python==5.12.1",
],
entry_points="""
[console_scripts]
tap-pipedrive=tap_pipedrive.cli:main
""",
packages=["tap_pipedrive",
"tap_pipedrive.streams",
"tap_pipedrive.streams.recents",
"tap_pipedrive.streams.recents.dynamic_typing"],
include_package_data=True,
)