forked from singer-io/tap-marketo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 988 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
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup
setup(name='tap-marketo',
version='2.6.0',
description='Singer.io tap for extracting data from the Marketo API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_marketo'],
install_requires=[
'singer-python==6.0.0',
'requests==2.31.0',
'pendulum==1.2.0',
'freezegun>=0.3.9',
'requests_mock>=1.3.0',
'backoff==2.2.1',
],
extras_require={
'dev': [
'ipdb==0.11'
]
},
entry_points='''
[console_scripts]
tap-marketo=tap_marketo:main
''',
packages=['tap_marketo'],
package_data = {
'tap_marketo/schemas': [
"activity_types.json",
"campaigns.json",
"programs.json",
]
},
include_package_data=True,
)