-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "bazel-simple-python"
version = "0.3.0"
description = "Projeto de Exemplo: Monorepo com Python e Bazel"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"requests",
]
[project.optional-dependencies]
airflow = [
"apache-airflow>=2.10.5",
"apache-airflow-providers-common-sql>=1.21.0",
"apache-airflow-providers-docker>=4.3.0",
"apache-airflow-providers-postgres>=6.0.0",
"apache-airflow-providers-sqlite>=4.0.0",
]
[dependency-groups]
dev = [
"pytest >=8.3.4"
]
lint = [
"ruff>=0.11.3",
]
[tool.uv]
default-groups = ["dev", "lint"]
[tool.uv.workspace]
members = ["packages/*", "apache-airflow/dag/*", "api", "prefect-core"]
exclude = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["packages/*/src/*/"]