forked from supabase/storage-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.81 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
54
55
56
57
58
59
60
[tool.poetry]
authors = [
"Joel Lee <[email protected]>",
"Leon Fedden <[email protected]>",
"Daniel Reinón García <[email protected]>",
"Leynier Gutiérrez González <[email protected]>",
"Anand Krishna <[email protected]>"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
description = "Supabase Storage client for Python."
documentation = "https://supabase-community.github.io/storage-py"
homepage = "https://supabase-community.github.io/storage-py"
license = "MIT"
name = "storage3"
readme = "README.md"
repository = "https://github.com/supabase-community/storage-py"
version = "0.7.6"
[tool.poetry.dependencies]
httpx = ">=0.24,<0.28"
python = "^3.8"
typing-extensions = "^4.2.0"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
python-semantic-release = "^9.8.1"
black = "^24.4.2"
isort = "^5.12.0"
pre-commit = "^3.5.0"
pytest = "^8.1.1"
pytest-asyncio = "^0.21.0"
pytest-cov = "^5.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.semantic_release]
version_variable = "storage3/utils.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_vcs = true
branch = "main"
changelog_components = "semantic_release.changelog.changelog_headers,semantic_release.changelog.compare_url"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]