mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Add build backend scaffolding (#7662)
This commit is contained in:
parent
9a6f455cbf
commit
c4c5378c0b
11 changed files with 308 additions and 42 deletions
1
scripts/packages/uv_backend/.gitignore
vendored
Normal file
1
scripts/packages/uv_backend/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
dist/
|
3
scripts/packages/uv_backend/README.md
Normal file
3
scripts/packages/uv_backend/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# uv_backend
|
||||
|
||||
A simple package to be built with the uv build backend.
|
11
scripts/packages/uv_backend/pyproject.toml
Normal file
11
scripts/packages/uv_backend/pyproject.toml
Normal file
|
@ -0,0 +1,11 @@
|
|||
[project]
|
||||
name = "uv-backend"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = []
|
||||
|
||||
[build-system]
|
||||
requires = ["uv>=0.4.15,<5"]
|
||||
build-backend = "uv"
|
2
scripts/packages/uv_backend/src/uv_backend/__init__.py
Normal file
2
scripts/packages/uv_backend/src/uv_backend/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
def greet():
|
||||
print("Hello 👋")
|
Loading…
Add table
Add a link
Reference in a new issue