-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 823 Bytes
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
[tool.poetry]
name = "serverish"
version = "2.0.1"
description = "helpers for server alike projects"
authors = ["Mikołaj Kałuszyński", "MMME team"]
readme = "README.md"
repository = "https://github.com/AkondLab/serverish"
include = ["serverish/schema/*"]
[tool.poetry.dependencies]
python = "^3.10"
aiodns = {version="^3.2.0", optional=true}
param = "^2.1.0"
nats-py = { version = "^2.7.2", optional= true}
jsonschema = "^4.20.0"
[tool.poetry.extras]
messenger = ["nats-py"]
dns = ["aiodns"]
[tool.poetry.group.dev.dependencies]
pytest = ">=8.2,<9"
pytest-asyncio = ">=0.24,<1"
nats-py = "^2.6.0"
jupyter = "*"
rich = "^13.5.2"
aiodns = "^3.1.1"
testcontainers = {extras = ["nats"], version = "^4.14.2"}
pytest-timeout = "^2.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"