-
Notifications
You must be signed in to change notification settings - Fork 66
/
pyproject.toml
59 lines (54 loc) · 1.35 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "cloud-datasets"
version = "0.1.0"
description = "Pipelines and Tutorials for Cloud Datasets."
authors = ["Adler Santos <adlersantos@users.noreply.github.com>",
"Shahin Saadati <happyhuman@users.noreply.github.com>"]
packages = []
[tool.poetry.dependencies]
python = "3.8.12"
pre-commit = "*"
[tool.poetry.group.pipelines.dependencies]
apache-airflow = "==2.2.5"
apache-airflow-providers-amazon = "*"
apache-airflow-providers-apache-beam = ">=2.38.0"
apache-airflow-providers-cncf-kubernetes = "*"
apache-airflow-providers-google = ">=8.0.0"
apache-beam = "2.42.0"
beautifulsoup4 = "==4.11.1"
black = "==22.10.0"
click = ">=8.0.0"
flask-openid = "==1.3.0"
flake8 = "==5.0.4"
google-cloud-orchestration-airflow = "*"
isort = "*"
Jinja2 = "==2.11.3"
kubernetes = "*"
pandas-gbq = "==0.17.9"
pytest = "^7.0.1"
pytest-mock = "*"
pytest-timeout = "*"
"ruamel.yaml" = "==0.17.21"
SQLAlchemy = "==1.3.24"
testbook = "*"
[tool.poetry.group.docs.dependencies]
black = "==22.10.0"
beautifulsoup4 = "==4.11.1"
flake8 = "==5.0.4"
isort = "*"
jupyter = "*"
matplotlib = "~3.2"
nbqa = "*"
numpy = "~1.20"
pandas = "~1.3"
pandas-gbq = "==0.17.9"
pytest = "^7.0.1"
pytest-mock = "*"
scikit-learn = "~1.0"
seaborn = "~0.11"
statsmodels = "~0.10"
tensorflow = "~2.8"
testbook = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"