-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (98 loc) · 2.74 KB
/
pyproject.toml
File metadata and controls
108 lines (98 loc) · 2.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[project]
name = "bubble-data-api-client"
version = "0.7.2"
description = "Query your Bubble.io database from Python with an async client and Pydantic ORM. Type-safe CRUD for the Bubble Data API with connection pooling and retries."
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
keywords = [
"bubble",
"bubble.io",
"bubble-api",
"bubbleio",
"async",
"asyncio",
"pydantic",
"orm",
"api",
"sdk",
"client",
"data-api",
"rest-api",
"typed",
"crud",
"database",
"integration",
"etl",
"httpx",
"low-code",
"nocode",
]
classifiers = [
"Framework :: AsyncIO",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx[http2]~=0.28",
"pydantic~=2.12",
"tenacity~=9.1",
"typing_extensions>=4.10",
]
[project.urls]
Homepage = "https://github.com/bubble-python/bubble-data-api-client"
Repository = "https://github.com/bubble-python/bubble-data-api-client"
[dependency-groups]
dev = [
"coverage~=7.10",
"pytest~=9.0",
"pytest-asyncio~=1.1",
"ruff~=0.12",
"respx~=0.22",
"python-dotenv~=1.2.1",
"ipython~=9.5",
"pre-commit~=4.5",
"pyright~=1.1.407",
"pypistats~=1.7",
"pip-audit~=2.9",
]
# ruff configuration
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
extend-select = ["E", "F", "I", "FAST", "ASYNC", "TRY", "PERF", "UP", "FURB", "A", "B", "S", "C4", "PIE", "RUF", "TC", "D"]
ignore = ["RUF022"]
[tool.ruff.lint.per-file-ignores]
"src/tests/**/*.py" = ["S101", "D"]
"*/test_*.py" = ["S101", "D"]
[tool.ruff.lint.flake8-type-checking]
runtime-evaluated-base-classes = ["pydantic.BaseModel"]
runtime-evaluated-decorators = ["pydantic.validate_call"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
pythonpath = ["src"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
# measure branch coverage in addition to line coverage
branch = true
# only measure the library code (excludes tests and dependencies)
source = ["src/bubble_data_api_client"]
[tool.coverage.report]
show_missing = true