forked from ActivityWatch/aw-server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (37 loc) · 937 Bytes
/
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
[tool.poetry]
name = "aw-server"
version = "0.12.0"
description = "Server for ActivityWatch"
authors = ["Erik Bjäreholt <[email protected]>"]
license = "MPL-2.0"
include = ["aw_server/static/*"]
[tool.poetry.scripts]
aw-server = "aw_server:main"
[tool.poetry.dependencies]
python = "^3.8"
aw-core = "^0.5.8"
aw-client = "^0.5.8"
flask = "^2.2"
flask-restx = "^1.0.3"
flask-cors = "*"
importlib-metadata = {version = "*", python = "<3.10"}
werkzeug = "^2.3.3"
[tool.poetry.dev-dependencies]
mypy = "*"
pytest = "^7.3"
pytest-flask = "*"
pytest-benchmark = "*"
pytest-cov = "*"
types-Werkzeug = "*"
types-pkg-resources = "*"
types-Flask = "*"
black = "^23.3.0"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov-report=term --cov-report=xml --cov-report=html --cov=aw_server"
python_files = ["*.py",]
[tool.ruff]
ignore = ["E402", "E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"