-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (46 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "simplyprint-ws-client"
version = "1.0.1rc6"
license = "AGPL-3.0-or-later"
authors = ["SimplyPrint <[email protected]>"]
description = "SimplyPrint Websocket Client"
homepage = "https://simplyprint.io"
repository = "https://github.com/SimplyPrint/printer-ws-client"
keywords = ["simplyprint", "websocket", "client"]
readme = "README.md"
packages = [
{ include = "simplyprint_ws_client" },
]
[tool.poetry.dependencies]
click = "^8.1.7"
psutil = "^6.0.0"
python = "^3.8"
netifaces = "^0.11.0"
sentry-sdk = "^2.19.2"
platformdirs = "^4.3.6"
pydantic = ">2.7"
typing-extensions = "*"
aiohttp = [
# Python 3.8 support dropped in 3.11.0
{ version = "^3.11.11", python = ">=3.9" },
{ version = "^3.10.11", python = "<3.9" }
]
yarl = [
# Python 3.8 support dropped in 1.15.3
{ version = "^1.18.3", python = ">=3.9" },
{ version = "^1.15.2", python = "<3.9" },
]
# Install async_timeout for python < 3.11
async-timeout = { version = "*", python = "<3.11" }
# Install strenum for python < 3.11
strenum = { version = "*", python = "<3.11" }
[tool.poetry.dev-dependencies]
unittest = "*"
pylint = "*"
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SimplyPrint/printer-ws-client/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"