-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 1.89 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "quinoa"
version = "0.1.0"
description = "A meeting recording and transcription app for Linux"
requires-python = ">=3.12"
dependencies = [
"PyQt6>=6.6.0",
"google-genai>=0.3.0",
"keyring>=24.0.0",
"jeepney>=0.8.0; sys_platform == 'linux'",
"pydantic>=2.0.0",
"markdown>=3.5.0",
"markdownify>=0.11.0",
# Google Calendar API
"google-api-python-client>=2.0.0",
"google-auth-httplib2>=0.1.0",
"google-auth-oauthlib>=1.0.0",
"platformdirs>=4.5.1",
]
[project.optional-dependencies]
# Optional dependencies - kept for backwards compatibility with some tools
dev = [
"ruff>=0.8.0",
"mypy>=1.13.0",
"pytest>=8.0.0",
"maturin>=1.12.5",
"types-Markdown",
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"mypy>=1.13.0",
"pytest>=8.0.0",
"maturin>=1.12.5",
"types-Markdown",
]
[tool.maturin]
features = ["pyo3/extension-module", "real-audio"]
module-name = "quinoa_audio"
manifest-path = "quinoa_audio/Cargo.toml"
# Ruff - fast Python linter and formatter
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort (import sorting)
"B", # flake8-bugbear (common bugs, bare except)
"T20", # flake8-print (no print statements)
"UP", # pyupgrade (modern Python syntax)
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (let formatter handle it)
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["T20"] # Allow print in tests
[tool.ruff.format]
quote-style = "double"
# Mypy - static type checking
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_ignores = true
# Start lenient, tighten over time
ignore_missing_imports = true
check_untyped_defs = false