-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
39 lines (35 loc) · 1.11 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
[tool.poetry]
name = "pocketbase"
version = "0.12.3"
description = "PocketBase SDK for python."
authors = ["Vithor Jaeger <[email protected]>", "Max Amling <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["pocketbase", "sdk"]
homepage = "https://github.com/vaphes/pocketbase"
repository = "https://github.com/vaphes/pocketbase"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = ">=3.9"
httpx = ">=0.27.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-httpx = "^0.30.0"
ruff = "^0.6.5"
coveralls = { version = "^4.0.1", python = "<3.13" }
[tool.ruff]
line-length = 120
target-version = "py39"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"