-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
122 lines (111 loc) · 2.52 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[project]
name = "dagster-pyiceberg"
version = "0.0.0"
description = "Package for PyIceberg-specific Dagster framework op and resource components."
authors = [
{name="Jasper Ginn", email="[email protected]"}
]
requires-python = ">=3.10"
readme = "README.md"
dependencies = [
"pyiceberg[pyarrow]>=0.8",
"dagster>=1.8.2",
"pendulum>=3.0.0",
"tenacity>=8.5.0",
]
maintainers = [
{name="Jasper Ginn", email="[email protected]"}
]
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://jasperhg90.github.io/dagster-pyiceberg/"
Documentation = "https://jasperhg90.github.io/dagster-pyiceberg/"
Repository = "https://github.com/JasperHG90/dagster-pyiceberg"
"Bug Tracker" = "https://github.com/JasperHG90/dagster-pyiceberg/issues"
[project.optional-dependencies]
daft = [
"getdaft>=0.3.13",
]
polars = [
"polars>=1.13.1",
]
pandas = [
"pandas>=2.2.3",
]
[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]
exclude = [".venv", ".github", "docs", "tests"]
include = ["src"]
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 = [
"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",
"dagit>=1.8.8",
]