-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (29 loc) · 897 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
[tool.poetry]
name = "aw-watcher-openvpn"
version = "0.11.0"
description = ""
authors = ["Erik Bjäreholt <[email protected]>"]
license = "MPL-2.0"
[tool.poetry.scripts]
aw-watcher-openvpn = "aw_watcher_openvpn:main"
[tool.poetry.dependencies]
python = "^3.8"
# Installing them from here won't work
#aw-core = {path = "aw-core"}
#aw-client = {path = "aw-client"}
#aw-watcher-afk = {path = "aw-watcher-afk"}
#aw-watcher-window = {path = "aw-watcher-window"}
#aw-server = {path = "aw-server"}
#aw-qt = {path = "aw-qt"}
[tool.poetry.dev-dependencies]
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-benchmark = "*"
psutil = "*"
aw-client = "^0.5"
# Won't be respected due to https://github.com/python-poetry/poetry/issues/1584
#setuptools = ">49.1.1" # needed due to https://github.com/pypa/setuptools/issues/1963
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"