-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.13 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
[project]
name = "anki-dev"
version = "0.0.0"
description = "Local-only environment"
requires-python = ">=3.12"
classifiers = ["Private :: Do Not Upload"]
[dependency-groups]
dev = [
"pre-commit",
"mypy",
"mypy-protobuf",
"ruff",
"pytest",
"PyChromeDevTools",
"wheel",
"hatchling", # for type checking hatch_build.py files
"mock",
"types-protobuf",
"types-requests",
"types-orjson",
"types-decorator",
"types-flask",
"types-flask-cors",
"types-markdown",
"types-waitress",
"types-pywin32",
"briefcase>=0.4.2",
]
docs = [
"sphinx",
"myst-parser",
"sphinx-book-theme",
"sphinx-autoapi",
"sphinx-autobuild>=2024.10.3",
"click-extra[sphinx]", # for GitHub alerts
]
# Local resolution guard; keep in sync with Dependabot cooldown.
[tool.uv]
exclude-newer = "7 days"
exclude-newer-package = { anki-mac-helper = false, anki-audio = false, briefcase = false }
required-version = ">=0.9.25"
[tool.uv.workspace]
members = ["pylib", "qt", "qt/installer/briefcase_plugins"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true