Add build backend scaffolding (#7662)

This commit is contained in:
konsti 2024-09-24 19:23:17 +02:00 committed by GitHub
parent 9a6f455cbf
commit c4c5378c0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 308 additions and 42 deletions

View file

@ -0,0 +1 @@
dist/

View file

@ -0,0 +1,3 @@
# uv_backend
A simple package to be built with the uv build backend.

View 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"

View file

@ -0,0 +1,2 @@
def greet():
print("Hello 👋")