34 lines
672 B
TOML
34 lines
672 B
TOML
[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"]
|