forked from JasperHG90/dagster-pipes-gcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (64 loc) · 1.59 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "dagster-gcp-function"
version = "0.1.0"
description = "Cloud function that uses dagster-pipes as an execution environment"
authors = ["Jasper Ginn <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11,<3.13"
functions-framework = "^3.3.0"
google-cloud-logging = "^3.10.0"
dagster-pipes = "^1.7.6"
polars = "^0.20.29"
faker = "^25.2.0"
deltalake = "^0.17.4"
google-cloud-storage = "^2.16.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
ipykernel = "^6.29.4"
python-dotenv = "^1.0.1"
httpx = "^0.27.0"
[tool.poetry.group.local.dependencies]
dagster = "^1.7.6"
dagster-webserver = "^1.7.6"
tenacity = "^8.3.0"
fastapi = "^0.111.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
pytest-httpserver = "^1.0.10"
[tool.black]
line-length = 100
exclude = '''
^/(
(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.venv
| _build
| build
| dist
| .notebooks
| .nox
)
)
'''
[tool.ruff]
ignore = ["E501"]
extend-exclude = ["__pycache__", ".tmp"]
[tool.isort]
profile = "black"
known_third_party = "dbutils_typehint,mlflow,numpy,opencensus,pandas,pyspark,pytest,setuptools,sklearn"
line_length = 100
[tool.mypy]
exclude = ["^.notebooks/", "^tasks\\.py$"]
ignore_missing_imports = true
[tool.poetry-git-version-plugin]
alpha_version_format = '{version}a{distance}+{commit_hash}'
version_format = '{version}'
ignore_pep440 = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"