-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 954 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
39
40
41
42
43
[project]
name = "opentelemetry-ecosystem-explorer"
version = "0.1.0"
description = "Project for exploring the OpenTelemetry ecosystem"
requires-python = ">=3.11"
readme = "README.md"
license = { text = "Apache-2.0" }
dependencies = [
"collector-watcher",
"configuration-watcher",
"java-instrumentation-watcher",
"explorer-db-builder",
]
[tool.uv.workspace]
members = [
"ecosystem-automation/*",
]
[tool.uv.sources]
collector-watcher = { workspace = true }
configuration-watcher = { workspace = true }
java-instrumentation-watcher = { workspace = true }
explorer-db-builder = { workspace = true }
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"pre-commit>=3.0.0",
]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
testpaths = ["ecosystem-automation"]
python_files = ["test_*.py", "*_test.py"]