Files
application-template-code-l…/pyproject.toml
ILay 6f8cc2ae09
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 43s
Add missing dagster-postgres dependency
2026-06-15 14:42:01 +02:00

31 lines
723 B
TOML

[project]
name = "simpl_open_credential_delivery"
version = "0.1.0"
description = "Dagster code location for Simpl-Open credential delivery workflows"
authors = [{ name = "Mat Basile" }]
requires-python = ">=3.12"
dependencies = [
"dagster>=1.11.16",
"dagster-webserver>=1.11.16",
"dagster-postgres>=0.27.16",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"requests>=2.32.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
simpl_open_credential_delivery = ["*.py"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]