forked from dholendar-27/aw-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1 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
[tool.poetry]
name = "aw-client"
version = "0.5.12"
description = "Client library for ActivityWatch"
authors = ["Erik Bjäreholt <[email protected]>", "Johan Bjäreholt <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://activitywatch.net/"
repository = "https://github.com/ActivityWatch/aw-client/"
documentation = "https://docs.activitywatch.net/"
packages = [
{ include = "aw_client" },
]
[tool.poetry.scripts]
aw-client = "aw_client.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
aw-core = "^0.5.7"
requests = "*"
persist-queue = "*"
click = "^8.0"
tabulate = "*"
typing-extensions = "*"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = "*"
mypy = "*"
pylint = "*"
types-requests = "*"
types-tabulate = "*"
pyupgrade = "*"
black = "*"
[tool.mypy]
files = ["aw_client", "tests", "examples"]
ignore_missing_imports = true
check_untyped_defs = true
[tool.ruff]
ignore = ["E402", "E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"