Feature/simpl 24306

This commit is contained in:
Tamas Papp
2026-04-15 05:59:00 +00:00
parent bb95b381fe
commit 2125933d3d
9 changed files with 189 additions and 0 deletions

33
pyproject.toml Normal file
View File

@@ -0,0 +1,33 @@
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "template-code-location"
version = "0.0.1"
requires-python = ">=3.12"
dependencies = [
"dagster>=1.8.13",
"dagster-webserver>=1.8.13",
"dagster-postgres>=0.24.13",
"pandas>=3.0",
"pyarrow>=23.0",
"lxml>=6.0",
"xmltodict>=1.0",
"rdflib>=7.6",
"numpy>=2.4",
"great_expectations>=1.16",
"pandera>=0.31",
"scrapy>=2.15",
"BeautifulSoup4>=4.14",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.0.0"
]
[tool.setuptools.packages.find]
where = ["src"]