Add python uv example

This commit is contained in:
Quirin Kinader 2025-08-19 23:34:56 +02:00
commit 00f8c67f93
5 changed files with 243 additions and 0 deletions

22
python-uv/pyproject.toml Normal file
View file

@ -0,0 +1,22 @@
[project]
name = "hello-world"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pandas>=2.3.1",
"urllib3>=2.2.3",
]
[project.scripts]
hello = "hello_world:hello"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.6.7",
]