-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (58 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (58 loc) · 1.5 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
[build-system]
build-backend = "maturin"
requires = ["maturin>=1.10.0,<2.0"]
[dependency-groups]
build = [
"maturin==1.14.1"
]
dev = [
{include-group = "build"},
{include-group = "test"},
{include-group = "pre-commit"}
]
pre-commit = [
"prek==0.4.5"
]
test = [
"pytest-github-actions-annotate-failures==0.4.2",
"pytest==9.1.1"
]
[project]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"
]
description = "Unicode segmentation and width for Python using Rust"
dynamic = ["version"]
license = "MIT"
license-files = ["LICENSE"]
name = "unicode-segmentation-rs"
readme = "README.md"
requires-python = ">=3.10"
[[project.authors]]
email = "michal@weblate.org"
name = "Michal Čihař"
[project.urls]
Documentation = "https://docs.weblate.org/"
Download = "https://github.com/WeblateOrg/unicode-segmentation-rs"
Funding = "https://weblate.org/donate/"
Homepage = "https://weblate.org/"
"Issue Tracker" = "https://github.com/WeblateOrg/unicode-segmentation-rs/issues"
"Source Code" = "https://github.com/WeblateOrg/unicode-segmentation-rs"
Twitter = "https://twitter.com/WeblateOrg"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.rumdl]
disable = [
# We do not enforce heading
"first-line-heading",
# Avoid length limit checks
"line-length"
]
[tool.rumdl.per-file-ignores]
"README.md" = [
# Allow HTML
"MD033"
]