-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (69 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (69 loc) · 1.77 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]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "unicode-detector"
description = "Detect non-whitelisted Unicode characters in text files"
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["version"]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = ["unicode", "lint", "ci", "github-actions"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/felix314159/unicode-detector"
Repository = "https://github.com/felix314159/unicode-detector"
Issues = "https://github.com/felix314159/unicode-detector/issues"
Changelog = "https://github.com/felix314159/unicode-detector/blob/main/CHANGELOG.md"
[project.scripts]
unicode-detector = "unicode_detector.cli:main"
[dependency-groups]
test = [
"pytest>=8,<9",
]
lint = [
"mypy>=1.17,<2",
"ruff>=0.13.2,<1",
]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
]
[tool.setuptools.packages.find]
where = ["."]
include = ["unicode_detector*"]
[tool.setuptools.package-data]
"unicode_detector" = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "unicode_detector.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"B",
"D",
]
ignore = [
"D203",
"D212",
]
[tool.mypy]
python_version = "3.11"
files = ["unicode_detector"]
[tool.uv]
required-version = ">=0.7.0"