-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.83 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
[project]
name = "when"
version = "2.1.11"
description = "Interface for the **whenever** automation tool"
authors = [
{ name = "Francesco Garosi", email = "francesco.garosi@gmail.com" },
]
license = 'BSD 3-Clause "New" or "Revised" License'
readme = "README.md"
requires-python = ">=3.10"
[project.scripts]
when = "when.when:main"
[project.gui-scripts]
when-bg = "when.when_bg:run_bg"
[tool.poetry]
packages = [
{ include = "lib" },
{ include = "when" },
]
[tool.poetry.dependencies]
python = "^3.10"
chlorophyll = "^0.4.2"
dbus-python = { version = "^1.3.2", markers = "sys_platform == 'linux'" }
pillow = "^12.3.0"
darkdetect = "^0.8.0"
Pygments = "^2.19.2"
pygobject = { version = "3.50.0", markers = "sys_platform == 'linux'" }
# pygobject = { version = "^3.52.2", markers = "sys_platform == 'linux'" }
pystray = "^0.19.5"
pywin32 = { version = ">=308", markers = "sys_platform == 'win32'" }
requests = "^2.32.5"
rich = "^13.9.4"
semver = "^3.0.4"
tkhtmlview = "^0.3.2"
tklinenums = "^1.7.1"
tomlkit = "^0.14.0"
tomlkit-extras = "^0.2.0"
ttkbootstrap = "^2.2.2"
winshell = { version = "^0.6", markers = "sys_platform == 'win32'" }
wmi = { version = "^1.5.1", markers = "sys_platform == 'win32'" }
tkinter-icons = { extras = ["bootstrap", "material"], version = "^5.0.1" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
ignore = [
"E402", # module-import-not-at-top-of-file / Module level import not at top of cell
"F401", # unused-import / {name} imported but unused
"F403", # undefined-local-with-import-star / from {name} import * used; unable to detect undefined names
"F405", # undefined-local-with-import-star-usage / {name} may be undefined, or defined from star imports
"E731", # lambda-assignment / Do not assign a lambda expression, use a def
]