-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.1 KB
/
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
39
40
41
42
[tool.poetry]
name = "biquery_python_tutorial"
version = "1.0.0"
description = "Create tables in Google BigQuery, auto-generate their schemas, and retrieve said schemas."
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/google-bigquery-python/"
repository = "https://github.com/hackersandslackers/bigquery-python-tutorial/"
documentation = "https://hackersandslackers.com/google-bigquery-python/"
keywords = [
"Google BigQuery",
"Google Cloud Storage",
"Google Cloud",
"BigQuery",
"Data Warehouse"
]
[tool.poetry.dependencies]
Python = "^3.8"
google-cloud-storage = "*"
google-cloud-bigquery = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
black = "^20.8b1"
isort = "^5.6.4"
flake8 = "^3.8.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:main"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/bigquery-python-tutorial/issues"