forked from tylertreat/BigQuery-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 808 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
from setuptools import find_packages
from setuptools import setup
VERSION = '0.0.2'
setup_args = dict(
name='BigQuery-Python',
description='Simple Python client for interacting with Google BigQuery.',
url='https://github.com/tylertreat/BigQuery-Python',
version=VERSION,
license='Apache',
packages=find_packages(),
include_package_data=True,
install_requires=['google-api-python-client', 'pyopenssl', 'httplib2'],
author='Tyler Treat',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)
if __name__ == '__main__':
setup(**setup_args)