-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.22 KB
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
[project]
name = "dagster-essentials"
version = "0.0.1"
description = "Dagster Essentials"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"dagster==1.12.4",
"dagster-dg-cli",
"dagster-webserver",
"dagster-cloud",
"dagster-duckdb",
"geopandas>=1.0.1,<1.1.0",
"pandas[parquet]",
"shapely>=2.0.0",
"matplotlib",
# Pin pyproj to a version that works better with Python 3.13
"pyproj>=3.7.0",
# numpy 2.1.0+ required for Python 3.13 compatibility (especially on Windows)
"numpy>=2.1.0; python_version>='3.13'",
"numpy>=1.26.0; python_version<'3.13'",
]
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
]
[dependency-groups]
dev = [
"ruff",
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.dg]
directory_type = "project"
[tool.dg.project]
root_module = "dagster_essentials"
registry_modules = [
"dagster_essentials.components.*",
]
[tool.ruff.lint]
ignore = [
"ERA001", # comments are fine for a learning environment
"E501", # Line too long for docstrings
"F401", # unused imports already caught by pylance
]
fixable = ["ALL"]
unfixable = [
"F401", # dont remove unused imports
]