-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.45 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
[project]
name = "xcompose"
version = "0.5.1"
dependencies = [
"pygtrie>=2.5.0",
]
requires-python = ">=3.10"
authors = [{ name = "Uri Granta", email = "uri.granta+python@gmail.com" }]
description = "Utility for managing X11 compose key sequences"
readme = "README.md"
license = { text = "MIT" }
keywords = ["xcompose", "Compose key", "Unicode", "text entry"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Text Processing",
"Topic :: Utilities"
]
[project.scripts]
xcompose = "xcompose:main"
xcfmt = "xcompose:xcfmt"
[project.urls]
config = "https://github.com/Udzu/xcompose/blob/main/Compose"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest-cov>=6.0.0",
"pytest-mypy>=0.10.3",
"pytest>=8.3.3",
"ruff>=0.7.1",
"taskipy>=1.14.0",
"ipython>=8.37.0",
]
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle (errors)
"W", # pycodestyle (warnings)
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"PT", # flake8-pytest-style
"SIM", # flake8-simplify
]
[tool.taskipy.tasks]
format = "uv run ruff format && uv run ruff check --fix-only"
check = "uv run ruff check && uv run ruff format --check"
tests = "uv run pytest --mypy"