-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathpyproject.toml
80 lines (73 loc) · 1.93 KB
/
pyproject.toml
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
[project]
name = "safeeyes"
version = "2.2.3"
description = "Protect your eyes from eye strain using this continuous breaks reminder."
keywords = ["linux utility health eye-strain safe-eyes"]
readme = "README.md"
authors = [
{name = "Gobinath Loganathan", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: GTK",
"Environment :: Other Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"pywayland",
"PyGObject",
"babel",
"psutil",
"packaging",
"python-xlib",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/slgobinath/SafeEyes"
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v2.2.3.tar.gz"
[project.scripts]
safeeyes = "safeeyes.__main__:main"
[project.optional-dependencies]
healthstats = ["croniter"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include=["safeeyes*"]
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "scripts"},
{include-group = "types"}
]
lint = [
"ruff==0.11.2"
]
scripts = [
"polib==1.2.0"
]
types = [
"mypy==1.15.0",
"PyGObject-stubs==2.13.0",
"types-croniter==5.0.1.20250322",
"types-psutil==7.0.0.20250218",
"types-python-xlib==0.33.0.20240407"
]
[tool.mypy]
# catch typos in configuration file
warn_unused_configs = true
disallow_any_unimported = true
#check_untyped_defs = true
warn_unused_ignores = true
warn_unreachable = true
enable_error_code = [
"ignore-without-code",
"possibly-undefined"
]