-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject-workspace.toml
More file actions
84 lines (76 loc) · 1.67 KB
/
Copy pathpyproject-workspace.toml
File metadata and controls
84 lines (76 loc) · 1.67 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Monorepo Workspace Configuration
# This file defines the workspace structure for typed-ffmpeg monorepo
[tool.uv.workspace]
members = [
"packages/core",
"packages/data-v5",
"packages/data-v6",
"packages/data-v7",
"packages/data-v8",
"packages/v5",
"packages/v6",
"packages/v7",
"packages/v8",
"packages/latest",
"packages/compatible",
]
[project]
name = "typed-ffmpeg-workspace"
version = "1.0.0"
description = "Monorepo workspace for typed-ffmpeg multi-version packages"
authors = [
{name = "lucemia", email = "lucemia@gmail.com"}
]
requires-python = ">=3.10"
readme = "README.md"
[project.optional-dependencies]
# Shared development dependencies for all packages
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff==0.12.2",
"mypy>=1.0",
"prek>=0.1.0",
]
# Install all versions (for development/testing)
all = [
"ffmpeg-core",
"typed-ffmpeg-v5",
"typed-ffmpeg-v6",
"typed-ffmpeg-v7",
"typed-ffmpeg-v8",
]
[tool.uv]
dev-dependencies = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff==0.12.2",
"mypy>=1.0",
"prek>=0.1.0",
]
[tool.ruff]
# Shared ruff configuration
line-length = 88
exclude = [
"**/cassettes/",
"**/__snapshots__/",
".venv",
"build",
"dist",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
[tool.pytest.ini_options]
# Shared pytest configuration
testpaths = ["packages/tests-shared", "packages/core/src"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]