forked from supabase/realtime-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (40 loc) · 908 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
48
[tool.poetry]
name = "aiorealtime"
version = "1.0.0"
description = ""
authors = ["bitnom"]
[tool.poetry.dependencies]
python = "^3.8"
# websockets = "^12.0"
python-dateutil = "^2.8.1"
typing-extensions = "^4.2.0"
aiohttp = {extras = ["speed"], version = "^3.8.6"}
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest<8.0.0,>=7.2.0",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "aiorealtime"
version = "1.0.0"
description = ""
authors = [
{name = "bitnom", email = "14287229+bitnom@users.noreply.github.com"},
{name = "bitnom"},
]
dependencies = [
"python-dateutil<3.0.0,>=2.8.1",
"typing-extensions<5.0.0,>=4.2.0",
"aiohttp[speed]<4.0.0,>=3.8.6",
]
requires-python = ">=3.8,<4.0"
readme = "README.md"
license = {text = "MIT"}