-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.38 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
[project]
name = "schlepper"
version = "0.1.1"
description = "A pure-Python version of `wrangler pages deploy`"
readme = "README.md"
authors = [{ name = "William Woodruff", email = "william@astral.sh" }]
requires-python = ">=3.14"
dependencies = ["blake3>=1.0.8", "urllib3>=2.6.3"]
license = "MIT OR Apache-2.0"
license-files = ["LICENSE-MIT", "LICENSE-APACHE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
documentation = "https://astral-sh.github.io/schlepper/"
source = "https://github.com/astral-sh/schlepper"
[build-system]
requires = ["uv_build>=0.11.2,<0.12.0"]
build-backend = "uv_build"
[tool.pytest]
markers = [
"integration: integration tests that hit the Cloudflare API (use -m integration to run)",
]
addopts = ["-m", "not integration", "--strict-markers"]
[tool.uv]
exclude-newer = "P7D"
# Don't perform cooldowns of our own tools.
exclude-newer-package = { ruff = false, ty = false }
[tool.uv.audit]
ignore = [
"GHSA-5239-wwwm-4pmq", # because: ReDoS spam against pygments
"GHSA-gc5v-m9x4-r6x2", # because: `requests.utils.extract_zipped_paths` does not affect us
]
[dependency-groups]
dev = [
"coverage>=7.13.5",
"furo>=2025.12.19",
"pytest>=9.0.2",
"ruff>=0.15.9",
"sphinx>=9.1.0",
"ty>=0.0.29",
]