-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (79 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
86 lines (79 loc) · 1.89 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
82
83
84
85
86
[build-system]
build-backend = "uv_build"
requires = ["uv_build>=0.11.6,<0.12"]
[dependency-groups]
dev = [
"pdbpp>=0.12.1",
]
docs = [
"livereload>=2.7.1",
"mkdocs-extra-sass-mathshim>=0.1.0",
"mkdocs-material[recommended,imaging]>=9.5.2",
"mkdocs-section-index>=0.3.8",
"mkdocs>=1.5.3",
"mkdocstrings[python]>=0.24.0",
"ruff>=0.9.5",
"urllib3<2",
]
test = [
"datapasta>=1.0.0",
"pytest>=8.3.4",
]
[project]
authors = [
{email = "louismmx@gmail.com", name = "Louis Maddox"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
]
dependencies = []
description = "Enumerate multiple X11 clipboard targets."
license = {text = "MIT"}
name = "cliptargets"
readme = "README.md"
requires-python = ">=3.10"
version = "0.1.4"
[project.scripts]
cliptargets = "cliptargets.cli:cli"
[project.urls]
"Bug Tracker" = "https://github.com/lmmx/cliptargets/issues"
Homepage = "https://github.com/lmmx/cliptargets"
[tool.ruff.lint]
ignore = [
"C408",
"C901",
"E501",
"E722",
"E741",
]
select = [
"C",
"D",
"E",
"F",
"I",
"UP",
"W",
]
[tool.tomlsort]
all = true
in_place = true
spaces_before_inline_comment = 2
spaces_indent_inline_array = 4
trailing_comma_inline_array = true
[tool.uv]
default-groups = ["dev", "test"]