forked from RealSelf/target-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 746 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
#!/usr/bin/env python
from setuptools import setup
setup(name='target-bigquery',
version='1.4.0',
description='Singer.io target for writing data to Google BigQuery',
author='RealSelf Business Intelligence',
url='https://github.com/RealSelf/target-bigquery',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['target_bigquery'],
install_requires=[
'jsonschema==2.6.0',
'singer-python>=1.5.0',
'google-api-python-client>=1.6.2',
'google-cloud>=0.34.0',
'google-cloud-bigquery>=1.9.0',
'oauth2client',
],
entry_points='''
[console_scripts]
target-bigquery=target_bigquery:main
''',
)