-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.08 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mycat"
version = "0.1.5"
description = "Desktop Cat: Qt Overlay"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "yumiaura" }]
classifiers = [
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
dependencies = [
"pillow>=12.0.0",
"pyside6>=6.10.0",
]
[dependency-groups]
dev = [
"ruff>=0.14.3",
]
# Console script `mycat` → calls mycat.main:main
[project.scripts]
mycat = "mycat.main:main"
[tool.setuptools.packages.find]
include = ["mycat*"]
# Include packaged images inside the wheel
[tool.setuptools.package-data]
mycat = ["images/*"]
[tool.mypy]
strict = true
[tool.ruff]
line-length = 120
target-version = "py310"
extend-exclude = ["README.md", "docs/*"]
[tool.ruff.lint]
select = ["C4", "E", "F", "I", "PERF", "UP"]
ignore = ["PERF203"]