-
-
Notifications
You must be signed in to change notification settings - Fork 207
/
pyproject.toml
48 lines (42 loc) · 1.4 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
[tool.poetry]
name = "supabase"
version = "2.10.0" # {x-release-please-version}
description = "Supabase client for Python."
authors = ["Joel Lee <[email protected]>", "Leon Fedden <[email protected]>", "Daniel Reinón García <[email protected]>", "Leynier Gutiérrez González <[email protected]>", "Anand", "Andrew Smith <[email protected]>"]
homepage = "https://github.com/supabase/supabase-py"
repository = "https://github.com/supabase/supabase-py"
documentation = "https://github.com/supabase/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.9"
postgrest = "^0.18"
realtime = "^2.0.0"
gotrue = "^2.10.0"
httpx = ">=0.26,<0.28"
storage3 = "^0.10"
supafunc = "^0.7.0"
[tool.poetry.dev-dependencies]
pre-commit = "^4.0.1"
black = "^24.10"
pytest = "^8.3.3"
flake8 = "^7.1.1"
isort = "^5.10.1"
pytest-cov = "^6.0.0"
commitizen = "^3.31.0"
python-dotenv = "^1.0.1"
[tool.poetry.scripts]
tests = 'poetry_scripts:run_tests'
[tool.poetry.group.dev.dependencies]
unasync-cli = { git = "https://github.com/supabase-community/unasync-cli.git", branch = "main" }
pytest-asyncio = "^0.24.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"