-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 734 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = 'bigQueryExporter',
packages = ['bigQueryExporter'], # this must be the same as the name above
version = '1.0.0',
description = 'Package codes to execute queries on BigQuery and save to local machine',
author = 'Icarus So',
author_email = 'icarus.so@gmail.com',
url = 'https://github.com/IcarusSO/bigQueryExporter', # use the URL to the github repo
keywords = ['bigquery', 'local', 'export'], # arbitrary keywords
classifiers = [],
install_requires=[
'google-api-core==0.1.4',
'google-auth==1.3.0',
'google-cloud-bigquery==0.29.0',
'google-cloud-core==0.28.0',
'google-cloud-storage==1.7.0',
'googleapis-common-protos==1.5.3'
]
)