-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
36 lines (34 loc) · 960 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='tap-activecampaign',
version='1.1.1',
description='Singer.io tap for extracting data from the Google Search Console API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_activecampaign'],
install_requires=[
'backoff==1.8.0',
'requests==2.23.0',
'pyhumps==1.3.1',
'singer-python==5.12.2'
],
entry_points='''
[console_scripts]
tap-activecampaign=tap_activecampaign:main
''',
packages=find_packages(),
package_data={
'tap_activecampaign': [
'schemas/*.json',
'tests/*.py'
]
},
extras_require={
'dev': [
'ipdb',
],
'test': [
'pylint',
'nose',
]
})