-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
38 lines (33 loc) · 993 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "biquery_sql_etl"
version = "1.0.0"
description = "Light ETL script to migrate data from BigQuery to SQL and vice-versa."
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/bigquery-and-sql-databases/"
repository = "https://github.com/hackersandslackers/bigquery-sqlalchemy-tutorial/"
documentation = "https://hackersandslackers.com/bigquery-and-sql-databases/"
keywords = [
"BigQuery",
"SQL",
"SQLAlchemy",
"ETL",
"Google Cloud"
]
[tool.poetry.dependencies]
Python = "^3.8"
SQLAlchemy = "*"
PyBigQuery = "*"
PyMySQL = "*"
Loguru = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:pipeline"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/bigquery-sqlalchemy-tutorial/issues"