-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
executable file
·50 lines (42 loc) · 1.26 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
49
50
#!/usr/bin/env python
from setuptools import setup
VERSION = "0.3.9"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tap-bigquery",
version=VERSION,
description="Singer.io tap for extracting data from BigQuery",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daigo Tanaka, Anelen Co., LLC",
url="https://github.com/anelendata/tap_bigquery",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"attrs>=21.3.0",
"backoff==1.8.0",
"getschema>=0.1.2",
"google-cloud-bigquery>=3.25.0",
"requests>=2.20.0",
"simplejson>=3.11.0",
"singer-python>=5.2.0",
"setuptools>=40.3.0",
"numpy<2"
],
entry_points="""
[console_scripts]
tap-bigquery=tap_bigquery:main
""",
packages=["tap_bigquery"],
package_data={
},
include_package_data=True,
)