Add python uv example
This commit is contained in:
commit
00f8c67f93
5 changed files with 243 additions and 0 deletions
22
python-uv/pyproject.toml
Normal file
22
python-uv/pyproject.toml
Normal 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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue