-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (40 loc) · 947 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
44
45
46
47
[project]
name = "znsocket"
version = "0.2.8"
description = "Python implementation of a Redis-compatible API using websockets."
authors = [
{ name = "Fabian Zills", email = "[email protected]" },
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"eventlet>=0.39.0",
"python-socketio[client]>=5.12.1",
"redis>=5.2.1",
"typer>=0.13",
"znjson>=0.2.6",
]
[dependency-groups]
dev = [
"coverage>=7.6.10",
"numpy>=2.2.2",
"pytest>=8.3.4",
]
[project.scripts]
znsocket = "znsocket.cli:app"
[project.urls]
Repository = "https://github.com/zincware/ZnSocket"
Releases = "https://github.com/zincware/ZnSocket/releases"
[tool.ruff.lint]
select = ["I", "F", "W", "C"]
[tool.coverage.run]
# omit the tests themselves
omit = ["*/tests/*"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/js",
]