-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
48 lines (46 loc) · 1.69 KB
/
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
42
43
44
45
46
47
48
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except (IOError, ImportError):
long_description = open('README.md').read()
setup(
name='bigquery-fdw',
version='2.1.2',
description='BigQuery Foreign Data Wrapper for PostgreSQL',
long_description=long_description,
author='Gabriel Bordeaux',
author_email='[email protected]',
url='https://github.com/gabfl/bigquery_fdw',
license='MIT',
packages=['bigquery_fdw'],
package_dir={'bigquery_fdw': 'src'},
# external dependencies
install_requires=[
'google-cloud-bigquery==3.17.2',
'google-auth==2.27.0',
'google-auth-oauthlib==1.2.0',
# 'protobuf==4.21.8', # Forcing version for google-cloud-bigquery
# 'grpcio==1.60.1', # Forcing version for google-cloud-bigquery
# 'grpcio-status==1.60.1', # Forcing version for google-cloud-bigquery
],
entry_points={
'console_scripts': [
# 'bigquery_fdw = bigquery_fdw.fdw:main',
'bq_client_test = bigquery_fdw.bqclient_test:main',
],
},
classifiers=[ # see https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
# 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
],
)