-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpyproject.toml
39 lines (34 loc) · 891 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
[tool.poetry]
name = "realtime"
version = "2.2.0" # {x-release-please-version}
description = ""
authors = [
"Joel Lee <joel@joellee.org>",
"Andrew Smith <a.smith@silentworks.co.uk>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/supabase/realtime-py"
[tool.poetry.dependencies]
python = "^3.9"
websockets = ">=11,<14"
python-dateutil = "^2.8.1"
typing-extensions = "^4.12.2"
aiohttp = "^3.11.11"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
python-dotenv = "^1.0.1"
pytest-asyncio = "^0.25.2"
coveralls = "^3.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.11,<25.0"
isort = "^5.12.0"
pre-commit = "^4.1.0"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"