-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (39 loc) · 1.08 KB
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
[project]
name = "pocketbase"
version = "0.17.3"
description = "PocketBase SDK for python."
authors = [
{ name = "Vithor Jaeger", email = "vaphes@gmail.com" },
{ name = "Max Amling", email = "max-amling@web.de" },
]
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
keywords = ["pocketbase", "sdk"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
dependencies = ["httpx>=0.27.2"]
[dependency-groups]
dev = [
"pytest>=8.3.3",
"pytest-httpx>=0.30.0",
"ruff>=0.7.0",
"coveralls>=4.0.1",
"environs>=14.5.0",
]
[build-system]
requires = ["uv_build>=0.9.8,<0.12.0"]
build-backend = "uv_build"
[tool.ruff]
line-length = 80
target-version = "py310"