Files
template-code-location/pyproject.toml
Richard Mrasek 52d2bb1812
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m21s
fixed missing postgreseql
2026-06-12 09:15:10 +02:00

34 lines
893 B
TOML

[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "template-code-location"
version = "0.2.0"
description = "Consolidated code location for all data services workflows"
requires-python = ">=3.12"
dependencies = [
"dagster>=1.8.13",
"dagster-postgres>=0.24.13",
"util-services",
]
[tool.uv]
exclude-dependencies = ["transformers", "spacy-transformers", "torch"]
override-dependencies = [
"util-services @ git+https://code.europa.eu/simpl/simpl-open/development/data-services/util-services.git@v0.7.0",
]
[tool.uv.sources]
util-services = { git = "https://code.europa.eu/simpl/simpl-open/development/data-services/util-services.git", rev = "v0.7.0" }
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.0.0"
]
[tool.setuptools.packages.find]
where = ["src"]