Files
template-code-location/pyproject.toml
Tamas Papp 0ed949a4e8 init
2026-04-15 08:10:47 +02:00

35 lines
741 B
TOML

[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "template-code-location"
version = "0.0.1"
description = "Template code location for data processings services"
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"]