-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (76 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
81 lines (76 loc) · 1.86 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
[build-system]
build-backend = "uv_build"
requires = ["uv_build>=0.9.15,<0.12.0"]
[dependency-groups]
dev = [
{include-group = "lint"}
]
lint = [
{include-group = "pre-commit"}
]
pre-commit = [
"prek==0.3.8"
]
[project]
authors = [
{email = "michal@weblate.org", name = "Michal Čihař"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Utilities"
]
description = "Weblate fonts collection"
keywords = [
"gettext",
"git",
"i18n",
"l10n",
"mercurial",
"translate"
]
license = "OFL-1.1"
license-files = [
"LICENSES/CC0-1.0.txt",
"LICENSES/OFL-1.1.txt"
]
name = "weblate-fonts"
readme = "README.md"
requires-python = ">=3.11"
version = "2026.1"
[project.urls]
Documentation = "https://docs.weblate.org/"
Download = "https://github.com/WeblateOrg/fonts"
Funding = "https://weblate.org/donate/"
Homepage = "https://weblate.org/"
"Issue Tracker" = "https://github.com/WeblateOrg/fonts/issues"
"Source Code" = "https://github.com/WeblateOrg/fonts"
Twitter = "https://twitter.com/WeblateOrg"
[tool.check-manifest]
ignore = [
".editorconfig",
".markdownlint.yml",
".pre-commit-config.yaml",
".yamllint.yml",
"biome.json",
"REUSE.toml",
"scripts/fonts.toml",
"scripts/update-fonts.py",
"SECURITY.md"
]
[tool.tomlsort]
ignore_case = true
sort_inline_arrays = true
sort_inline_tables = true
sort_table_keys = true
spaces_before_inline_comment = 2