This repository has been archived by the owner on May 22, 2021. It is now read-only.
forked from gabfl/bigquery_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.48 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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='bigquery-fdw',
version='1.5',
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=[
'argparse',
'google-cloud-bigquery==1.3.0',
'google-auth==1.5.0',
'google-auth-oauthlib==0.2.0',
],
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',
],
)