forked from adswerve/target-bigquery
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 710 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 710 Bytes
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
#!/usr/bin/env python
from setuptools import setup
install_requires = open("requirements.txt").read().strip().split("\n")
dev_requires = open("dev-requirements.txt").read().strip().split("\n")
extras = {
"dev": dev_requires
}
setup(
name="target-bigquery",
version="0.11.0",
description="Singer.io target for writing data to Google BigQuery",
author="Adswerve",
url="https://github.com/adswerve/target-bigquery",
classifiers=["Programming Language :: Python :: 3 :: Only"],
packages=["target_bigquery"],
install_requires=install_requires,
extras_require=extras,
entry_points="""
[console_scripts]
target-bigquery=target_bigquery:main
"""
)