hello, uv2nix world

This commit is contained in:
Alex Tau 2025-04-27 21:42:05 +03:00
parent 4fc491f61a
commit 83a5ff3909
6 changed files with 390 additions and 0 deletions

21
pyproject.toml Normal file
View file

@ -0,0 +1,21 @@
[project]
name = "hello-world"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"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",
]