-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (55 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
66 lines (55 loc) · 1.3 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
[project]
name = "gscreenshot"
description = "Lightweight GTK frontend to scrot"
readme = "README.md"
authors = [
{name = "Nate Levesque", email = "public@thenaterhood.com"},
]
dependencies = [
"pillow",
"pygobject",
]
requires-python = ">=3.1"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/thenaterhood/gscreenshot"
[project.scripts]
gscreenshot-cli = "gscreenshot.frontend:delegate"
[project.gui-scripts]
gscreenshot = "gscreenshot.frontend:delegate"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.uv]
dev-dependencies = [
"pytest",
"mock",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.png", "*.glade", "*.ui", "locale/**/*", "LICENSE"]
[tool.setuptools]
include-package-data = true
[tool.pylint]
max-line-length = 100
disable = [
"invalid-name",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"import-error",
"duplicate-code",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-public-methods",
"too-many-arguments",
"too-many-positional-arguments",
"pointless-string-statement",
]
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"
exclude = [
"src/gscreenshot/compat.py"
]