-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.18 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
[project]
name = "seam"
version = "3.14.1"
description = "SDK for the Seam API written in Python."
authors = [{ name = "Seam Labs, Inc.", email = "engineering@getseam.com" }]
license = "MIT"
license-files = ["LICENSE.txt"]
readme = "README.rst"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.23.0,<1",
"httpx-retries>=0.6.0,<1",
"svix>=1.24.0,<2",
]
[project.urls]
Homepage = "https://github.com/seamapi/python"
Repository = "https://github.com/seamapi/python"
[dependency-groups]
dev = [
"black>=26.5.1,<27",
"pylint>=4.0.7,<5",
"pytest>=9.1.1,<10",
"pytest-cov>=7.1.0,<8",
"pytest-runner>=6.0.1,<7",
"pytest-watch>=4.2.0,<5",
"rstcheck>=6.3.0,<7",
"mypy>=2.3.0,<3",
"pytest-asyncio>=1.0.0,<2",
]
[build-system]
requires = ["uv_build>=0.12.0,<0.13.0"]
build-backend = "uv_build"
[tool.uv]
required-version = ">=0.12.0,<0.13.0"
[tool.uv.build-backend]
module-root = ""
source-exclude = ["**/*_test.py", "**/__pycache__"]
wheel-exclude = ["**/*_test.py", "**/__pycache__"]
[tool.black]
target-version = ["py311"]
[tool.pytest.ini_options]
norecursedirs = [
"node_modules"
]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"