-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
39 lines (36 loc) · 1.16 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
#!/usr/bin/env python
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name="pipelinewise-target-bigquery",
version="1.5.0",
description="Singer.io target for loading data to BigQuery - PipelineWise compatible",
long_description=long_description,
long_description_content_type='text/markdown',
author="jmriego",
url='https://github.com/transferwise/pipelinewise-target-bigquery',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
py_modules=["target_bigquery"],
install_requires=[
'pipelinewise-singer-python>=1,<3',
'google-cloud-bigquery>=2.20.0,<3.1.0',
'fastavro>=0.22.8,<1.4.11'
],
extras_require={
"test": [
'pytest==7.0.1',
'pylint==2.13.4',
'pytest-cov==3.0.0',
]
},
entry_points="""
[console_scripts]
target-bigquery=target_bigquery:main
""",
packages=["target_bigquery"],
package_data={},
include_package_data=True,
)