forked from supabase/realtime-py
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.18 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
[tool.poetry]
name = "realtime"
version = "1.0.2"
description = ""
authors = [
"Joel Lee <[email protected]>",
"Andrew Smith <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/supabase-community/realtime-py"
[tool.poetry.dependencies]
python = "^3.8"
websockets = "^11.0"
python-dateutil = "^2.8.1"
typing-extensions = "^4.2.0"
uuid = "^1.30"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.3.0"
black = "^23.11.0"
isort = "^5.12.0"
pre-commit = "^3.5.0"
[tool.semantic_release]
version_variables = ["realtime/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
major_on_zero = false
commit_message = "chore(release): bump version to v{version}"
build_command = "curl -sSL https://install.python-poetry.org | python - && export PATH=\"/github/home/.local/bin:$PATH\" && poetry install && poetry build"
upload_to_vcs_release = true
branch = "master"
changelog_components = "semantic_release.changelog.changelog_headers,semantic_release.changelog.compare_url"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"