3a7db17147
A first milestone: source tree -> source dist -> wheel -> install works. This PR adds a test for this. There's obviously a lot still missing, including basics such as the Readme inclusion.
12 lines
312 B
TOML
12 lines
312 B
TOML
[project]
|
|
name = "built-by-uv"
|
|
version = "0.1.0"
|
|
description = "A package to be built with the uv build backend that uses all features exposed by the build backend"
|
|
#rreadme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = ["anyio>=4,<5"]
|
|
|
|
[build-system]
|
|
requires = ["uv>=0.4.15,<5"]
|
|
build-backend = "uv"
|