Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
46 changes: 46 additions & 0 deletions build-uv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/env python3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

import os
import pathlib
import platform
import subprocess
import sys

ROOT = pathlib.Path(os.path.abspath(__file__)).parent


def run():
env = dict(os.environ)
env["PYTHONUNBUFFERED"] = "1"
python = sys.executable
system = platform.system()

if system == "Darwin" or system == "Linux":
args = [
python,
"build-main.py",
*sys.argv[1:],
]
make_dir = ROOT / "cpython-unix"
os.chdir(make_dir)
return os.execve(python, args, env)
elif system == "Windows":
args = [
python,
"build.py",
*sys.argv[1:],
]
cwd = str(ROOT / "cpython-windows")
return subprocess.run(args, cwd=cwd, env=env, check=True, bufsize=0)
else:
raise Exception(f"Unsupported host system: {system}")


if __name__ == "__main__":
try:
run()
except subprocess.CalledProcessError as e:
sys.exit(e.returncode)
23 changes: 23 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[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 = [
"docker",
"jinja2",
"jsonschema",
"pyyaml",
"tomli",
"typing-extensions",
"zstandard",
]

[build-system]
requires = ["uv_build>=0.9.12,<0.10.0"]
build-backend = "uv_build"

[tool.uv.build-backend]
module-name = "pythonbuild"
module-root = ""
Loading