-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
pyproject.toml
33 lines (28 loc) · 1.09 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
[tool.poetry]
name = "aw-watcher-window"
version = "0.2.0"
description = "Window watcher for ActivityWatch"
authors = ["Erik Bjäreholt <erik@bjareho.lt>"]
license = "MPL-2.0"
[tool.poetry.scripts]
aw-watcher-window = "aw_watcher_window:main"
[tool.poetry.dependencies]
python = "^3.8"
aw-client = "^0.5.14"
pywin32 = {version = "306", platform = "win32"}
wmi = {version = "*", platform = "win32"}
pyobjc-framework-ApplicationServices = { version = "*", platform="darwin"}
pyobjc-framework-CoreText = {version = "*", platform="darwin"}
pyobjc-framework-OSAKit = {version = "*", platform="darwin"}
# locked due to https://github.com/python-xlib/python-xlib/pull/242 leading to 100% CPU stalls
# see: https://github.com/ActivityWatch/aw-watcher-window/issues/89
# also locked in aw-watcher-afk
python-xlib = {version = "0.31", platform = "linux"}
[tool.poetry.dev-dependencies]
pytest = "*"
mypy = "*"
macholib = {version = "*", platform = "darwin"} # Needed for pyinstaller
pyinstaller = {version = "*", python = "^3.8,<3.14"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"