-
-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 809 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 809 Bytes
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
[project]
name = "python-build-standalone"
version = "0.1.0"
description = "Produces standalone, highly-redistributable builds of Python."
readme = "README.rst"
requires-python = ">=3.10"
dependencies = [
"boto3>=1.37",
"boto3-stubs[s3]>=1.42",
"docker>=7.1.0",
"jinja2>=3.1.5",
"jsonschema>=4.23.0",
"pyyaml>=6.0.2",
"six>=1.17.0",
"tomli>=2.2.1",
"typing-extensions>=4.14.1",
"zstandard>=0.23.0",
]
[build-system]
requires = ["uv_build>=0.9.12,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "pythonbuild"
module-root = ""
[dependency-groups]
check = [
"mypy>=1.19.1",
"ruff>=0.15.7",
"types-jinja2>=2.11.9",
"types-jsonschema>=4.26.0.20260324",
"types-pyyaml>=6.0.12.20250915",
]
dev = [
"moto[server]>=5.1.22",
]