-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 1.17 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
[tool.black]
line-length = 120
target-version = ['py310']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "aw-watcher-mpv-sender"
version = "0.2.2.1"
description = "ActivityWatch watcher for mpv. This is the python component that submits the collected logs to AW. See github for details."
license = "MIT"
authors = ["RundownRhino"]
readme = "README.md"
homepage = "https://github.com/RundownRhino/aw-watcher-mpv-sender"
repository = "https://github.com/RundownRhino/aw-watcher-mpv-sender"
documentation = "https://github.com/RundownRhino/aw-watcher-mpv-sender"
keywords = ["activitywatch","mpv"]
classifiers = [
# poetry should inject the license classifier automatically
# same for the python version ones
]
packages = [{include="aw_watcher_mpv_sender"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11" # uses generic standard collections; pyinstaller requires <3.11 for now
aw-client = "^0.5" # was tested only on 0.5.9
aw-core = "^0.5" # was tested only on 0.5.10
[tool.poetry.group.dev.dependencies]
pyinstaller = "^5.0.1"