-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (90 loc) · 1.91 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "dagster-pyiceberg-project"
version = "0.0.0"
description = "Libraries that provide Dagster IO managers for PyIceberg."
authors = [
{name="Jasper Ginn", email="jasperginn@gmail.com"}
]
requires-python = ">=3.10"
readme = "README.md"
dependencies = []
[tool.uv]
default-groups = ["dev", "docs"]
package = false
[tool.uv.workspace]
members = [
"packages/*"
]
[tool.uv.sources]
dagster_pyiceberg = { workspace = true }
dagster_pyiceberg_pandas = { workspace = true }
dagster_pyiceberg_polars = { workspace = true }
[tool.black]
line-length = 88
exclude = '''
^/(
(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.venv
| _build
| build
| dist
| .notebooks
| .nox
)
)
'''
[tool.isort]
profile = "black"
extend_skip = [".notebooks", ".nox", ".venv"]
[tool.mypy]
exclude = [
'^docs/'
]
ignore_missing_imports = true
explicit_package_bases = true
[tool.bandit]
skips = ['B101']
[tool.ruff]
lint.ignore = ["E501"]
extend-exclude = [
"__pycache__",
"docs",
"site",
".nox",
".notebooks"
]
[tool.pytest.ini_options]
cache_dir = "/home/vscode/workspace/.cache/pytest"
[tool.pyright]
include = ["packages"]
pythonVersion = "3.11"
venvPath = "."
venv = ".venv"
[dependency-groups]
docs = [
"mkdocs>=1.6.1",
"mkdocs-include-markdown-plugin>=7.0.0",
"mkdocs-material>=9.5.42",
"mkdocstrings[python]>=0.26.2",
]
dev = [
# These are added as dev dependencies becuase they should be available
# when developing the project.
"dagster_pyiceberg",
"dagster_pyiceberg_pandas",
"dagster_pyiceberg_polars",
# END WORKSPACE_PACKAGES
"pre-commit>=3.8.0",
"ipykernel>=6.29.5",
"pytest>=8.3.2",
"pyright>=1.1.385",
"pytest-coverage>=0.0",
"testcontainers[postgres]>=4.8.2",
"psycopg2-binary>=2.9.10",
#"cachetools>=5.5.0",
"dagit>=1.8.8",
]