-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
38 lines (36 loc) · 947 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, find_packages
setup(
name='tap-exacttarget',
version='1.7.1',
description='Singer.io tap for extracting data from the ExactTarget API',
author='Fishtown Analytics',
url='http://fishtownanalytics.com',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_exacttarget'],
install_requires=[
'funcy==1.9.1',
'singer-python==5.12.1',
'python-dateutil==2.6.0',
'voluptuous==0.10.5',
'Salesforce-FuelSDK==1.3.0'
],
extras_require={
'test': [
'pylint==2.10.2',
'astroid==2.7.3',
'nose'
],
'dev': [
'ipdb==0.11'
]
},
entry_points='''
[console_scripts]
tap-exacttarget=tap_exacttarget:main
''',
packages=find_packages(),
package_data={
'tap_exacttarget': ['schemas/*.json']
}
)