forked from singer-io/tap-appsflyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1023 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
39
40
41
#!/usr/bin/env python
from setuptools import setup
setup(
name='tap-appsflyer',
version='0.0.12',
description='Singer.io tap for extracting data from the AppsFlyer API',
author='Stitch, Inc.',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_appsflyer'],
install_requires=[
'attrs==16.3.0',
'singer-python==1.6.0a2',
'requests==2.20.0',
'backoff==1.3.2',
],
extras_require={
'dev': [
'bottle',
'faker'
]
},
entry_points={
'console_scripts': [
'tap-appsflyer=tap_appsflyer:main'
]
},
packages=['tap_appsflyer'],
package_data={
'tap_appsflyer/schemas/raw_data': [
'installations.json',
'in_app_events.json',
'organic_installs.json',
'postbacks_in_app_events.json',
'postbacks_installs.json'
],
},
include_package_data=True,
)