forked from supabase/supabase-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "supabase"
version = "1.0.3"
description = "Supabase client for Python."
authors = ["Joel Lee <joel@joellee.org>", "Leon Fedden <leonfedden@gmail.com>", "Daniel Reinón García <danielreinon@outlook.com>", "Leynier Gutiérrez González <leynier41@gmail.com>", "Anand"]
homepage = "https://github.com/supabase-community/supabase-py"
repository = "https://github.com/supabase-community/supabase-py"
documentation = "https://github.com/supabase-community/supabase-py"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.8"
postgrest = "^0.10.6"
realtime = "^1.0.0"
gotrue = "^1.0.1"
httpx = "^0.23.0"
storage3 = "^0.5.2"
supafunc = "^0.2.2"
python-semantic-release = "7.33.2"
[tool.poetry.dev-dependencies]
pre-commit = "^3.2.1"
black = "^23.1"
pytest = "^7.3.1"
flake8 = "^5.0.4"
isort = "^5.10.1"
pytest-cov = "^4.0.0"
commitizen = "^2.42.0"
python-semantic-release = "^7.33.2"
python-dotenv = "^1.0.0"
[tool.poetry.scripts]
tests = 'poetry_scripts:run_tests'
[tool.semantic_release]
version_variable = "supabase/__version__.py:__version__"
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
commit_subject = "chore(release): bump version to v{version}"
build_command = "curl -sSL https://install.python-poetry.org | python - --preview && export PATH=\"/github/home/.local/bin:$PATH\" && poetry install && poetry build"
upload_to_repository = true
branch = "develop"
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"