-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (29 loc) · 908 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="tap-google-analytics",
version="0.1.2",
description="Singer.io tap for extracting data from the Google Analytics Reporting API",
author='Meltano Team & Contributors',
author_email="[email protected]",
url="https://gitlab.com/meltano/tap-google-analytics",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_google_analytics"],
install_requires=[
"singer-python==5.6.1",
"google-api-python-client==1.7.9",
"oauth2client==4.1.3",
"backoff==1.3.2"
],
entry_points="""
[console_scripts]
tap-google-analytics=tap_google_analytics:main
""",
packages=["tap_google_analytics"],
package_data = {
'tap_google_analytics/defaults': [
"default_report_definition.json",
],
},
include_package_data=True,
)