-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
49 lines (43 loc) · 1.27 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
[tool.poetry]
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 Krishna <anand2312@proton.me>"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
description = "Supabase Storage client for Python."
documentation = "https://supabase.github.io/storage-py"
homepage = "https://supabase.github.io/storage-py"
license = "MIT"
name = "storage3"
readme = "README.md"
repository = "https://github.com/supabase/storage-py"
version = "0.10.0" # {x-release-please-version}
[tool.poetry.dependencies]
httpx = {version = ">=0.26,<0.28", extras = ["http2"]}
python = "^3.9"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
black = "^24.8.0"
isort = "^5.12.0"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
pytest-asyncio = "^0.21.0"
pytest-cov = "^6.0.0"
python-dotenv = "^1.0.0"
Sphinx = "^7.1.2"
sphinx-press-theme = "^0.9.1"
unasync-cli = "^0.0.9"
[tool.poetry.group.dev.dependencies]
sphinx-toolbox = "^3.4.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]